Skip to content

Commit 71a6c7f

Browse files
authored
Enable FAILURE_STORE feature flag for LogsIndexModeFullClusterRestartIT (#127480)
1 parent 9011a97 commit 71a6c7f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

muted-tests.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -248,9 +248,6 @@ tests:
248248
- class: org.elasticsearch.xpack.esql.expression.function.scalar.convert.ParseIpTests
249249
method: testLeadingZerosAreOctal {TestCase[str=v4, validLeadingZerosRejected=true, validLeadingZerosAreDecimal=true, validLeadingZerosAreOctal=true]}
250250
issue: https://github.com/elastic/elasticsearch/issues/126496
251-
- class: org.elasticsearch.upgrades.LogsIndexModeFullClusterRestartIT
252-
method: testLogsIndexing {cluster=UPGRADED}
253-
issue: https://github.com/elastic/elasticsearch/issues/126967
254251
- class: org.elasticsearch.smoketest.MlWithSecurityIT
255252
method: test {yaml=ml/data_frame_analytics_crud/Test get stats on newly created config}
256253
issue: https://github.com/elastic/elasticsearch/issues/121726

qa/full-cluster-restart/src/javaRestTest/java/org/elasticsearch/upgrades/LogsIndexModeFullClusterRestartIT.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
import org.elasticsearch.common.time.DateFormatter;
1919
import org.elasticsearch.common.time.FormatNames;
2020
import org.elasticsearch.test.cluster.ElasticsearchCluster;
21+
import org.elasticsearch.test.cluster.FeatureFlag;
2122
import org.elasticsearch.test.cluster.local.distribution.DistributionType;
2223
import org.elasticsearch.test.cluster.util.Version;
2324
import org.hamcrest.Matcher;
@@ -46,7 +47,9 @@ private static ElasticsearchCluster buildCluster() {
4647
.module("x-pack-aggregate-metric")
4748
.module("x-pack-stack")
4849
.setting("xpack.security.enabled", "false")
49-
.setting("xpack.license.self_generated.type", "trial");
50+
.setting("xpack.license.self_generated.type", "trial")
51+
.feature(FeatureFlag.FAILURE_STORE_ENABLED);
52+
;
5053

5154
if (oldVersion.before(Version.fromString("8.18.0"))) {
5255
cluster.jvmArg("-da:org.elasticsearch.index.mapper.DocumentMapper");

0 commit comments

Comments
 (0)