-
Notifications
You must be signed in to change notification settings - Fork 282
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
[Backport 2.x] Fix the import org.opensearch.core.common.Strings; and import org.opensearch.core.common.logging.LoggerMessageFormat; #2953
Conversation
Signed-off-by: Craig Perkins <[email protected]>
…ect#2781) Signed-off-by: Ryan Liang <[email protected]> (cherry picked from commit 33aebb9)
Signed-off-by: Craig Perkins <[email protected]>
There's an issue with the common-utils version:
I'm going to check if common-utils has fixed the issue and updating the dependency in this repo to |
common-utils has fixed the issue on 2.x: opensearch-project/common-utils#474 |
Signed-off-by: Craig Perkins <[email protected]>
@@ -21,7 +21,7 @@ buildscript { | |||
version_tokens = opensearch_version.tokenize('-') | |||
opensearch_build = version_tokens[0] + '.0' | |||
|
|||
common_utils_version = System.getProperty("common_utils.version", '2.1.0.0') | |||
common_utils_version = System.getProperty("common_utils.version", '2.9.0.0-SNAPSHOT') |
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 set this to SNAPSHOT, but this should be changed to a release version ASAP.
@opensearch-project/engineering-effectiveness Can a new SNAPSHOT for common-utils 2.9.0.0 be published? https://aws.oss.sonatype.org/content/repositories/snapshots/org/opensearch/common-utils/2.9.0.0-SNAPSHOT/ Security needs a version of the jar with this change included. |
Triggered here: https://github.com/opensearch-project/common-utils/actions/runs/5486967416 The process is now moved to GHA and owned by respective team. Looks like a PR is in review to fix the triggers: opensearch-project/common-utils#475 |
Thank you @gaiksaya ! |
Codecov Report
@@ Coverage Diff @@
## 2.x #2953 +/- ##
============================================
- Coverage 62.13% 62.05% -0.09%
+ Complexity 3374 3367 -7
============================================
Files 264 264
Lines 19440 19440
Branches 3314 3314
============================================
- Hits 12080 12063 -17
- Misses 5764 5776 +12
- Partials 1596 1601 +5
|
Backport #2781 to 2.x
This PR also includes a fix for: #2950