Skip to content

Commit

Permalink
Fix system property value for inference rescorer tests feature flag (e…
Browse files Browse the repository at this point in the history
…lastic#100366)

Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
  • Loading branch information
mark-vieira and elasticmachine committed Oct 6, 2023
1 parent a9d870d commit ee23129
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 ee23129

Please sign in to comment.