-
Notifications
You must be signed in to change notification settings - Fork 24.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
Hot-reloadable remote cluster credentials (with blocking call fix) #103215
Hot-reloadable remote cluster credentials (with blocking call fix) #103215
Conversation
Hi @n1v0lg, I've created a changelog YAML for you. |
…elastic/elasticsearch into revert-103211-revert-102798-rcs2-reload
* See {@link TransportReloadRemoteClusterCredentialsAction} for more context. | ||
*/ | ||
private void reloadRemoteClusterCredentials(Settings settingsWithKeystore) { | ||
final PlainActionFuture<ActionResponse.Empty> future = new PlainActionFuture<>() { |
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.
This is the only effective change -- in a serverless environment this method is called from within a cluster state update thread, which trips an assertion causing test failure.
Hi @n1v0lg, I've created a changelog YAML for you. |
x-pack/plugin/security/src/main/java/org/elasticsearch/xpack/security/Security.java
Outdated
Show resolved
Hide resolved
.../elasticsearch/xpack/core/security/action/settings/ReloadRemoteClusterCredentialsAction.java
Outdated
Show resolved
Hide resolved
@elasticmachine update branch |
Pinging @elastic/es-security (Team:Security) |
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.
@elasticmachine run elasticsearch-ci/part-3-fips |
@elasticmachine update branch |
@elasticmachine update branch (failures unrelated) |
Docs PR to accompany #103215. Resolves: ES-7625
Docs PR to accompany elastic#103215. Resolves: ES-7625
Brings back #102798, with a tweak to avoid tripping on a blocking operation.
Only change compared to the original PR is 4072fac