-
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
[repository-azure] Update to the latest Azure Storage SDK v12, remove privileged runnable wrapper in favor of access helper #1521
Conversation
… privileged runnable wrapper in favor of access helper Signed-off-by: Andriy Redko <[email protected]>
}); | ||
}; | ||
final Thread t = new Thread(group, priviledged, namePrefix + threadNumber.getAndIncrement(), 0); | ||
final Thread t = new Thread(group, r, namePrefix + threadNumber.getAndIncrement(), 0); |
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.
No need to wrap anymore :-)
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.
Nice!
Can one of the admins verify this patch? |
✅ Gradle Wrapper Validation success ea9456b |
✅ Gradle Precommit success ea9456b |
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.
Thanks @reta , changes look good to me!
}); | ||
}; | ||
final Thread t = new Thread(group, priviledged, namePrefix + threadNumber.getAndIncrement(), 0); | ||
final Thread t = new Thread(group, r, namePrefix + threadNumber.getAndIncrement(), 0); |
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.
Nice!
@reta could you also backport this PR to 1.x? |
@saratvemulapalli definitely, on it |
… privileged runnable wrapper in favor of access helper (opensearch-project#1521) Signed-off-by: Andriy Redko <[email protected]>
… privileged runnable wrapper in favor of access helper (#1521) (#1538) Signed-off-by: Andriy Redko <[email protected]>
… privileged runnable wrapper in favor of access helper (opensearch-project#1521) Signed-off-by: Andriy Redko <[email protected]>
Signed-off-by: Andriy Redko [email protected]
Description
The fix for [1] has finally arrived to latest Azure Storage SDK releases. We could get rid of privileged runnable wrapper and use access helper (for
JacksonAdapter
serialization / deserialization). More details in [2], [3][1] Azure/azure-sdk-for-java#24373
[2] Azure/azure-sdk-for-java#25004
[3] Azure/azure-sdk-for-java#24374
Issues Resolved
N/A
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.