diff --git a/x-pack/plugin/logsdb/qa/rolling-upgrade/src/javaRestTest/java/org/elasticsearch/xpack/logsdb/Clusters.java b/x-pack/plugin/logsdb/qa/rolling-upgrade/src/javaRestTest/java/org/elasticsearch/xpack/logsdb/Clusters.java index 6d53c2ad6d79f..fc16ed1284b01 100644 --- a/x-pack/plugin/logsdb/qa/rolling-upgrade/src/javaRestTest/java/org/elasticsearch/xpack/logsdb/Clusters.java +++ b/x-pack/plugin/logsdb/qa/rolling-upgrade/src/javaRestTest/java/org/elasticsearch/xpack/logsdb/Clusters.java @@ -8,6 +8,7 @@ package org.elasticsearch.xpack.logsdb; import org.elasticsearch.test.cluster.ElasticsearchCluster; +import org.elasticsearch.test.cluster.FeatureFlag; import org.elasticsearch.test.cluster.local.LocalClusterSpecBuilder; import org.elasticsearch.test.cluster.local.distribution.DistributionType; import org.elasticsearch.test.cluster.util.Version; @@ -38,7 +39,8 @@ public static ElasticsearchCluster oldVersionClusterWithLogsDisabled(String user .module("x-pack-aggregate-metric") .module("x-pack-stack") .setting("xpack.security.autoconfiguration.enabled", "false") - .setting("xpack.license.self_generated.type", useTrial ? "trial" : "basic"); + .setting("xpack.license.self_generated.type", useTrial ? "trial" : "basic") + .feature(FeatureFlag.EXTENDED_DOC_VALUES_PARAMS); return cluster.build(); }