Skip to content

Commit

Permalink
v3.13.9 fixing assembly build
Browse files Browse the repository at this point in the history
  • Loading branch information
pbartusch committed Jan 6, 2022
1 parent 1d2b3dc commit 5f0030b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/controllers/ApiController.scala
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ class ApiController @Inject()(authActionFactory: AuthActionFactory,
ApiResult(API_RESULT_FAIL, s"Deleting Solr Index failed: ${e.getMessage}", None)
)
)
case _ => BadRequest(
case _: Throwable => BadRequest(
Json.toJson(
ApiResult(API_RESULT_FAIL, s"Deleting Solr Index failed due to an unknown error", None)
)
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import com.typesafe.sbt.GitBranchPrompt

name := "search-management-ui"
version := "3.13.8"
version := "3.13.9"

scalaVersion := "2.12.11"

Expand Down
1 change: 0 additions & 1 deletion frontend/src/app/components/admin/admin.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
(solrIndicesChange)="solrIndicesChange($event)"
(showSuccessMsg)="showSuccessMsg($event)"
(showErrorMsg)="showErrorMsg($event)"
[solrIndices]="solrIndices"
>
</app-smui-admin-rules-collection-list>

Expand Down

0 comments on commit 5f0030b

Please sign in to comment.