Skip to content

Commit

Permalink
Enabling migration reindex for XPackRestIT (elastic#118359)
Browse files Browse the repository at this point in the history
This enables the feature flag for migration reindexing for XPackRestIT.
Closes elastic#118272 Closes elastic#118273  Closes elastic#118274
  • Loading branch information
masseyke committed Dec 23, 2024
1 parent 2d05a81 commit 3b0d13f
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ public enum FeatureFlag {
TIME_SERIES_MODE("es.index_mode_feature_flag_registered=true", Version.fromString("8.0.0"), null),
FAILURE_STORE_ENABLED("es.failure_store_feature_flag_enabled=true", Version.fromString("8.12.0"), null),
SUB_OBJECTS_AUTO_ENABLED("es.sub_objects_auto_feature_flag_enabled=true", Version.fromString("8.16.0"), null),
INFERENCE_UNIFIED_API_ENABLED("es.inference_unified_feature_flag_enabled=true", Version.fromString("8.18.0"), null);
INFERENCE_UNIFIED_API_ENABLED("es.inference_unified_feature_flag_enabled=true", Version.fromString("8.18.0"), null),
MIGRATION_REINDEX_ENABLED("es.reindex_data_stream_feature_flag_enabled=true", Version.fromString("8.18.0"), null);

public final String systemProperty;
public final Version from;
Expand Down

0 comments on commit 3b0d13f

Please sign in to comment.