Skip to content

Commit

Permalink
Updated the ES version
Browse files Browse the repository at this point in the history
  • Loading branch information
sukruthiarjula committed Jul 3, 2024
1 parent 83eccef commit 37c1294
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ ext {
revKafka = '2.6.0'
revMicrometer = '1.8.12'
revPrometheus = '0.9.0'
revElasticSearch7 = '7.10.0'
revElasticSearch7 = '7.10.1'
revCodec = '1.15'
revAzureStorageBlobSdk = '12.7.0'
revNatsStreaming = '2.6.5'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public ElasticSearchProperties elasticSearchProperties() {
protected static final ElasticsearchContainer container =
new ElasticsearchContainer(
DockerImageName.parse("elasticsearch")
.withTag("7.10.0")); // this should match the client version
.withTag("7.10.1")); // this should match the client version

@Autowired protected ObjectMapper objectMapper;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public abstract class AbstractEndToEndTest {
private static final ElasticsearchContainer container =
new ElasticsearchContainer(
DockerImageName.parse("elasticsearch")
.withTag("7.10.0")); // this should match the client version
.withTag("7.10.1")); // this should match the client version

private static RestClient restClient;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public abstract class AbstractEndToEndTest {
private static final ElasticsearchContainer container =
new ElasticsearchContainer(
DockerImageName.parse("elasticsearch")
.withTag("7.10.0")); // this should match the client version
.withTag("7.10.1")); // this should match the client version

private static RestClient restClient;

Expand Down

0 comments on commit 37c1294

Please sign in to comment.