-
Notifications
You must be signed in to change notification settings - Fork 25.2k
Don't pass feature flag to non-snapshot artifacts #80033
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
Don't pass feature flag to non-snapshot artifacts #80033
Conversation
When configuring BWC tests to use feature flags, we need to ensure we don't inadvertently enable the flag on the old version nodes, as those are NOT release builds and therefore fail if the feature flag is present. This commit tweaks our config here to ensure we explicitly enable the flag only on the upgraded nodes.
Pinging @elastic/es-delivery (Team:Delivery) |
@elasticmachine update branch |
@elasticmachine run elasticsearch-ci/release-tests |
1 similar comment
@elasticmachine run elasticsearch-ci/release-tests |
@elasticmachine update branch |
@elasticmachine run elasticsearch-ci/release-tests |
1 similar comment
@elasticmachine run elasticsearch-ci/release-tests |
@elasticmachine update branch |
@elasticmachine run elasticsearch-ci/release-tests |
@elasticmachine update branch |
@elasticmachine run elasticsearch-ci/release-tests |
@mark-vieira does this fix #80479? |
Yep, this addresses that issue as well. Thanks. |
When configuring BWC tests to use feature flags, we need to ensure we
don't inadvertently enable the flag on the old version nodes, as those
are NOT release builds and therefore fail if the feature flag is
present. This commit tweaks our config here to ensure we explicitly
enable the flag only on the upgraded nodes.
Closes #78219