Skip to content

Commit

Permalink
Fix system property value for inference rescorer tests feature flag
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-vieira committed Oct 5, 2023
1 parent 7ff9c9f commit d1508fa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/
public enum FeatureFlag {
TIME_SERIES_MODE("es.index_mode_feature_flag_registered=true", Version.fromString("8.0.0"), null),
INFERENCE_RESCORER("es.inference_rescorer_feature_flag_enabled", Version.fromString("8.10.0"), null);
INFERENCE_RESCORER("es.inference_rescorer_feature_flag_enabled=true", Version.fromString("8.10.0"), null);

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

0 comments on commit d1508fa

Please sign in to comment.