File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
modules/data-streams/src/main/java/org/elasticsearch/datastreams Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 2020 */
2121public 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}
You can’t perform that action at this time.
0 commit comments