-
Notifications
You must be signed in to change notification settings - Fork 25.6k
Fix #129104 by adding a FeatureFlag to YAML tests #129569
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
Conversation
|
|
||
| protected FullTextFunctionTestCase(Class<? extends FullTextFunction> fullTextFunction) { | ||
| this(fullTextFunction, randomFrom("text", "keyword"), randomAlphaOfLengthBetween(1, 10)); | ||
| this(fullTextFunction, randomFrom("text", "keyword"), randomAlphaOfLengthBetween(5, 10)); |
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.
Unrelated to this fix, but had a test failure on the CI that I thought was worth fixing. This makes it harder for a query to be repeated, and thus simplified, on the full text function test cases - which can cause failures as the actual query is not the expected one.
|
Pinging @elastic/es-search-relevance (Team:Search Relevance) |
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.
🙈
|
Closes this one too: #129602 |
Closes #129104
Closes #129602
Release tests don't have feature flags active. There were a couple
ESClientYamlSuiteTestCasethatdidn't have theIVF_FORMATfeature flag, and thus failed release tests when YAML tests tried to createbbq_ivfindex formats.