Elasticsearch: Update rest client and test container to 6.7.1

Change-Id: Icacc0a45ef38ea115e0d918f274ab299399750b0
This commit is contained in:
Marco Miller
2019-04-08 13:27:22 -04:00
parent dc4a7a485a
commit cc01e096a4
2 changed files with 3 additions and 3 deletions

View File

@@ -910,8 +910,8 @@ maven_jar(
# and httpasyncclient as necessary.
maven_jar(
name = "elasticsearch-rest-client",
artifact = "org.elasticsearch.client:elasticsearch-rest-client:6.7.0",
sha1 = "032bf7044d1d5664ebdbfd6f2601027c806565ce",
artifact = "org.elasticsearch.client:elasticsearch-rest-client:6.7.1",
sha1 = "a00aa6cc593a464e4a890d1a226ded5c625659ab",
)
JACKSON_VERSION = "2.9.8"

View File

@@ -49,7 +49,7 @@ public class ElasticContainer extends ElasticsearchContainer {
case V6_6:
return "docker.elastic.co/elasticsearch/elasticsearch-oss:6.6.2";
case V6_7:
return "docker.elastic.co/elasticsearch/elasticsearch-oss:6.7.0";
return "docker.elastic.co/elasticsearch/elasticsearch-oss:6.7.1";
case V7_0:
return "docker.elastic.co/elasticsearch/elasticsearch-oss:7.0.0-rc2";
}