mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-06-27 17:10:22 -04:00
Add IVF feature flag to IT tests (#129766)
This commit is contained in:
parent
b0bd718b96
commit
6952cf2b63
2 changed files with 3 additions and 1 deletions
|
@ -90,7 +90,8 @@ public class CcsCommonYamlTestSuiteIT extends ESClientYamlSuiteTestCase {
|
|||
// geohex_grid requires gold license
|
||||
.setting("xpack.license.self_generated.type", "trial")
|
||||
.feature(FeatureFlag.TIME_SERIES_MODE)
|
||||
.feature(FeatureFlag.SUB_OBJECTS_AUTO_ENABLED);
|
||||
.feature(FeatureFlag.SUB_OBJECTS_AUTO_ENABLED)
|
||||
.feature(FeatureFlag.IVF_FORMAT);
|
||||
|
||||
private static ElasticsearchCluster remoteCluster = ElasticsearchCluster.local()
|
||||
.name(REMOTE_CLUSTER_NAME)
|
||||
|
|
|
@ -92,6 +92,7 @@ public class RcsCcsCommonYamlTestSuiteIT extends ESClientYamlSuiteTestCase {
|
|||
.setting("xpack.security.remote_cluster_client.ssl.enabled", "false")
|
||||
.feature(FeatureFlag.TIME_SERIES_MODE)
|
||||
.feature(FeatureFlag.SUB_OBJECTS_AUTO_ENABLED)
|
||||
.feature(FeatureFlag.IVF_FORMAT)
|
||||
.user("test_admin", "x-pack-test-password");
|
||||
|
||||
private static ElasticsearchCluster fulfillingCluster = ElasticsearchCluster.local()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue