Skip to content

Commit

Permalink
Bump es sdk to version 7.17.9 in build.sbt, docker-compose and test e…
Browse files Browse the repository at this point in the history
…lasticsearch service
  • Loading branch information
philmcmahon committed Jan 3, 2024
1 parent 8f38a58 commit 62a59dd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ trait DockerElasticsearchService extends DockerKit {

override val StartContainersTimeout: FiniteDuration = 10.minutes

val elasticsearchContainer = DockerContainer("docker.elastic.co/elasticsearch/elasticsearch:7.9.3")
val elasticsearchContainer = DockerContainer("docker.elastic.co/elasticsearch/elasticsearch:7.17.9")
.withPorts(DefaultElasticsearchHttpPort -> Some(ExposedElasticsearchHttpPort))
.withEnv("discovery.type=single-node", s"http.publish_port=$ExposedElasticsearchHttpPort", "xpack.security.enabled=false")
.withReadyChecker(
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@ lazy val backend = (project in file("backend"))
// dependency to tikka or another library
"org.bouncycastle" % "bcutil-jdk15on" % "1.70",
"commons-io" % "commons-io" % "2.6",
"com.sksamuel.elastic4s" %% "elastic4s-client-esjava" % "7.9.1",
"org.elasticsearch.client" % "elasticsearch-rest-client-sniffer" % "7.9.2",
"com.sksamuel.elastic4s" %% "elastic4s-client-esjava" % "7.17.4",
"org.elasticsearch.client" % "elasticsearch-rest-client-sniffer" % "7.17.9",
"org.apache.pekko" %% "pekko-cluster-typed" % "1.0.1", // Needs to match pekko version in Play
"org.neo4j.driver" % "neo4j-java-driver" % "1.6.3",
"com.pff" % "java-libpst" % "0.9.3",
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ services:
- 7687:7687

elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:7.9.3
image: docker.elastic.co/elasticsearch/elasticsearch:7.17.9
container_name: pfi-elasticsearch
environment:
- discovery.type=single-node
Expand Down

0 comments on commit 62a59dd

Please sign in to comment.