-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Ensure feature flags from opensearch.yml are set prior to plugin initialization #18432
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
…ing plugin initialization. Signed-off-by: Jing Zhang <[email protected]>
❌ Gradle check result for 65e7d42: FAILURE Please examine the workflow log, locate, and copy-paste the failure(s) below, then iterate to green. Is the failure a flaky test unrelated to your change? |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #18432 +/- ##
============================================
- Coverage 72.74% 72.63% -0.11%
+ Complexity 67767 67699 -68
============================================
Files 5497 5499 +2
Lines 311815 311865 +50
Branches 45261 45271 +10
============================================
- Hits 226822 226518 -304
- Misses 66504 66827 +323
- Partials 18489 18520 +31 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
@@ -525,6 +525,10 @@ protected Node(final Environment initialEnvironment, Collection<PluginInfo> clas | |||
); | |||
} | |||
|
|||
// Ensure feature flags from opensearch.yml are valid during plugin initialization. | |||
// Bug fix: https://github.com/opensearch-project/OpenSearch/issues/18417 |
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.
Nitpick, but the commit message/PR description is the right place for this type of context. Unless it's a TODO or some other exception case we don't need to be adding issue links for code modifications.
…ialization. (opensearch-project#18432) Signed-off-by: Jing Zhang <[email protected]>
…ialization. (opensearch-project#18432) Signed-off-by: Jing Zhang <[email protected]>
…ialization. (opensearch-project#18432) Signed-off-by: Jing Zhang <[email protected]>
…ialization. (opensearch-project#18432) Signed-off-by: Jing Zhang <[email protected]>Signed-off-by: TJ Neuenfeldt <[email protected]>
…ialization. (opensearch-project#18432) Signed-off-by: Jing Zhang <[email protected]>
Description
Ensure feature flags from opensearch.yml are valid during plugin initialization.
Related Issues
#18417
Check List
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.