-
Notifications
You must be signed in to change notification settings - Fork 1.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
Remove LegacyESVersion.V_6_8_x constants #1869
Conversation
Can one of the admins verify this patch? |
@@ -48,31 +45,6 @@ | |||
// dont include nano/micro seconds as rounding would become zero then and throw an exception | |||
private static final String[] ALLOWED_TIME_SUFFIXES = new String[] { "d", "h", "ms", "s", "m" }; | |||
|
|||
public void testSerialization() throws Exception { |
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.
The Rounding logic for Joda has been deprecated and currently only exists in tests. We can clean these up in another PR. Just removing this test for build to pass.
❌ Gradle Check failure f5c41fbf2641c073394d8087f6df3b6aeb2fdc38 |
start gradle check |
❌ Gradle Check failure f5c41fbf2641c073394d8087f6df3b6aeb2fdc38 |
start gradle check |
❌ Gradle Check failure f5c41fbf2641c073394d8087f6df3b6aeb2fdc38 |
This commit removes all usages of the `LegacyESVersion.V_6_8_x` constants from the codebase. Signed-off-by: Rabi Panda <adnapibar@gmail.com>
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.
LGTM
@adnapibar rebased against latest master and seeing this test failure:
Coming from #1866, the log file is there https://ci.opensearch.org/logs/ci/workflow/OpenSearch_CI/PR_Checks/Gradle_Check/gradle_check_1837.log |
Thanks @reta - looking into it |
Description
This commit removes all usages of the
LegacyESVersion.V_6_8_x
constants from the codebase.Issues Resolved
Part of #1674
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.
Signed-off-by: Rabi Panda adnapibar@gmail.com