Skip to content

Commit

Permalink
Update feature flag version availability.
Browse files Browse the repository at this point in the history
  • Loading branch information
afoucret committed Dec 5, 2023
1 parent 121d97f commit 1ef46d2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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),
LEARNING_TO_RANK("es.learning_to_rank_feature_flag_enabled=true", Version.fromString("8.10.0"), null),
LEARNING_TO_RANK("es.learning_to_rank_feature_flag_enabled=true", Version.fromString("8.12.0"), null),
FAILURE_STORE_ENABLED("es.failure_store_feature_flag_enabled=true", Version.fromString("8.12.0"), null);

public final String systemProperty;
Expand Down
2 changes: 1 addition & 1 deletion x-pack/plugin/ml/qa/basic-multi-node/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ testClusters.configureEach {
setting 'xpack.license.self_generated.type', 'trial'
setting 'indices.lifecycle.history_index_enabled', 'false'
setting 'slm.history_index_enabled', 'false'
requiresFeature 'es.learning_to_rank_feature_flag_enabled', Version.fromString("8.10.0")
requiresFeature 'es.learning_to_rank_feature_flag_enabled', Version.fromString("8.12.0")
}

if (BuildParams.inFipsJvm){
Expand Down
2 changes: 1 addition & 1 deletion x-pack/plugin/ml/qa/ml-with-security/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -258,5 +258,5 @@ testClusters.configureEach {
user username: "no_ml", password: "x-pack-test-password", role: "minimal"
setting 'xpack.license.self_generated.type', 'trial'
setting 'xpack.security.enabled', 'true'
requiresFeature 'es.learning_to_rank_feature_flag_enabled', Version.fromString("8.10.0")
requiresFeature 'es.learning_to_rank_feature_flag_enabled', Version.fromString("8.12.0")
}

0 comments on commit 1ef46d2

Please sign in to comment.