Merge branch 'stable-2.15' into stable-2.16

* stable-2.15:
  Update elasticsearch-rest-client to 7.4.2
  ElasticContainer: Use 6.8.4 image for V6_8 tests

Change-Id: I8f76f205123bed5bd96cdfa5e339eee93dfab44a
This commit is contained in:
Marco Miller
2019-11-01 11:49:05 -04:00
2 changed files with 4 additions and 4 deletions

View File

@@ -51,7 +51,7 @@ public class ElasticContainer extends ElasticsearchContainer {
case V6_7:
return "blacktop/elasticsearch:6.7.2";
case V6_8:
return "blacktop/elasticsearch:6.8.2";
return "blacktop/elasticsearch:6.8.4";
case V7_0:
return "blacktop/elasticsearch:7.0.1";
case V7_1:
@@ -61,7 +61,7 @@ public class ElasticContainer extends ElasticsearchContainer {
case V7_3:
return "blacktop/elasticsearch:7.3.2";
case V7_4:
return "blacktop/elasticsearch:7.4.1";
return "blacktop/elasticsearch:7.4.2";
}
throw new IllegalStateException("No tests for version: " + version.name());
}