Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/main/resources/application.conf
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ postgres {
serverName = "localhost"
serverName = ${?POSTGRES_SERVER}
portNumber = "5432"
postNumber = ${?POSTGRES_PORT}
portNumber = ${?POSTGRES_PORT}
databaseName = "dplaapi"
databaseName = ${?POSTGRES_DB}
user = "dplaapi"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import scala.concurrent.{ExecutionContextExecutor, Future}
import scala.util.{Failure, Success}

/**
* Processes response streams from Elastic Search.
* Processes response streams from Elasticsearch.
*/

sealed trait ElasticSearchResponse
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@ class ParamValidatorTest extends AnyWordSpec with Matchers

"reject too-short param" in {
val given = "d"
val params = Map("sourceResource.subject.name" -> given)
val params = Map("sourceResource.subject.name" -> given)
itemParamValidator ! RawSearchParams(params, replyProbe.ref)
replyProbe.expectMessageType[InvalidSearchParams]
}
Expand Down
Loading