Skip to content

Commit e318e81

Browse files
committed
Re-add test node feature because they are load bearing
1 parent 8e5d202 commit e318e81

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

modules/data-streams/src/main/java/org/elasticsearch/datastreams/DataStreamFeatures.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
*/
2121
public class DataStreamFeatures implements FeatureSpecification {
2222

23+
public static final NodeFeature DATA_STREAM_FAILURE_STORE_TSDB_FIX = new NodeFeature("data_stream.failure_store.tsdb_fix");
24+
2325
public static final NodeFeature DOWNSAMPLE_AGGREGATE_DEFAULT_METRIC_FIX = new NodeFeature(
2426
"data_stream.downsample.default_aggregate_metric_fix"
2527
);
@@ -31,6 +33,6 @@ public Set<NodeFeature> getFeatures() {
3133

3234
@Override
3335
public Set<NodeFeature> getTestFeatures() {
34-
return Set.of(DOWNSAMPLE_AGGREGATE_DEFAULT_METRIC_FIX);
36+
return Set.of(DATA_STREAM_FAILURE_STORE_TSDB_FIX, DOWNSAMPLE_AGGREGATE_DEFAULT_METRIC_FIX);
3537
}
3638
}

0 commit comments

Comments
 (0)