Upgrade elasticsearch-rest-client to 7.3.1

Also update the test container to use this version for V7_3 tests.

Change-Id: I2b1913f355101c10649477222beed84fccbc3961
This commit is contained in:
David Pursehouse
2019-08-26 08:15:06 +09:00
parent 78f5bf3b85
commit 8e8bd2b669
2 changed files with 3 additions and 3 deletions

View File

@@ -925,8 +925,8 @@ maven_jar(
# and httpasyncclient as necessary.
maven_jar(
name = "elasticsearch-rest-client",
artifact = "org.elasticsearch.client:elasticsearch-rest-client:7.3.0",
sha1 = "3cdc211c8efb72c202107b40dee356f4f2f0f9bd",
artifact = "org.elasticsearch.client:elasticsearch-rest-client:7.3.1",
sha1 = "f5793c89b50a159cbb3e15e17bb981ff854cbe51",
)
maven_jar(

View File

@@ -59,7 +59,7 @@ public class ElasticContainer extends ElasticsearchContainer {
case V7_2:
return "blacktop/elasticsearch:7.2.1";
case V7_3:
return "blacktop/elasticsearch:7.3.0";
return "blacktop/elasticsearch:7.3.1";
}
throw new IllegalStateException("No tests for version: " + version.name());
}