-
Notifications
You must be signed in to change notification settings - Fork 24.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Convert core xpack rest tests to new test framework #100301
Convert core xpack rest tests to new test framework #100301
Conversation
Pinging @elastic/es-delivery (Team:Delivery) |
💔 Backport failed
You can use sqren/backport to manually backport by running |
# Conflicts: # test/test-clusters/src/main/java/org/elasticsearch/test/cluster/FeatureFlag.java # x-pack/plugin/build.gradle
@@ -15,7 +15,8 @@ | |||
* to indicate that this feature is required and should be enabled when appropriate. | |||
*/ | |||
public enum FeatureFlag { | |||
TIME_SERIES_MODE("es.index_mode_feature_flag_registered=true", Version.fromString("8.0.0"), null); | |||
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); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this missing an =true
? This PR seems to have caused #100362, so I think there's something different to before about the way the feature flag is set in release builds.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you're right. I'll get this fixed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This converts the x-pack core YAML tests to using the new test clusters testing framework.
Fixes #95334