Add support for Elasticsearch version 7.7.*

Upgrade elasticsearch-rest-client to 7.7.0.

Add V7_7 to the version manager, and use this in all the V7 tests.

Change-Id: I406ccf0bc29f38ccce8ab74f5742342bc50251d2
This commit is contained in:
Marco Miller
2020-05-13 15:20:03 -04:00
parent ef3b545aa6
commit 3d852f8c53
10 changed files with 18 additions and 9 deletions

View File

@@ -58,6 +58,8 @@ public class ElasticContainer extends ElasticsearchContainer {
return "blacktop/elasticsearch:7.5.2";
case V7_6:
return "blacktop/elasticsearch:7.6.2";
case V7_7:
return "blacktop/elasticsearch:7.7.0";
}
throw new IllegalStateException("No tests for version: " + version.name());
}