Skip to content

Commit 1c8c80d

Browse files
authored
Add index mode feature flag to data stream's test task. (elastic#86348)
Closes elastic#86333
1 parent 017bf7f commit 1c8c80d

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

modules/data-streams/build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,7 @@ if (BuildParams.isSnapshotBuild() == false) {
4949
tasks.named("internalClusterTest").configure {
5050
systemProperty 'es.index_mode_feature_flag_registered', 'true'
5151
}
52+
tasks.named("test").configure {
53+
systemProperty 'es.index_mode_feature_flag_registered', 'true'
54+
}
5255
}

modules/data-streams/src/test/java/org/elasticsearch/datastreams/MetadataIndexTemplateServiceTests.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@
4646
*/
4747
public class MetadataIndexTemplateServiceTests extends ESSingleNodeTestCase {
4848

49-
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/86333")
5049
public void testValidateTsdbDataStreamsReferringTsdbTemplate() throws Exception {
5150
var state = ClusterState.EMPTY_STATE;
5251
final var service = getMetadataIndexTemplateService();

0 commit comments

Comments
 (0)