-
Notifications
You must be signed in to change notification settings - Fork 24.8k
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
Handle failure in TransportUpdateAction#handleUpdateFailureWithRetry #97290
Handle failure in TransportUpdateAction#handleUpdateFailureWithRetry #97290
Conversation
Here `executor(request.getShardId())` may throw, but we're already handling a failure so we cannot simply let this exception bubble up. This commit adjusts things to catch the exception, using it to fail the listener. Closes elastic#97286
Opened #97291 for an unrelated test failure; @elasticmachine please run elasticsearch-ci/part-1 |
…eFailureWithRetry-failure
Pinging @elastic/es-distributed (Team:Distributed) |
Hi @DaveCTurner, I've created a changelog YAML for you. |
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
I see you put older versions. Maybe you'd consider putting also the auto-backport-and-merge label before merging.
…lastic#97290) Here executor(request.getShardId()) may throw, but we're already handling a failure so we cannot simply let this exception bubble up. This commit adjusts things to catch the exception, using it to fail the listener. Closes elastic#97286
…lastic#97290) Here executor(request.getShardId()) may throw, but we're already handling a failure so we cannot simply let this exception bubble up. This commit adjusts things to catch the exception, using it to fail the listener. Closes elastic#97286
…hRetry (#97290) (#97326) * Handle failure in TransportUpdateAction#handleUpdateFailureWithRetry (#97290) Here executor(request.getShardId()) may throw, but we're already handling a failure so we cannot simply let this exception bubble up. This commit adjusts things to catch the exception, using it to fail the listener. Closes #97286 * Fix --------- Co-authored-by: Iraklis Psaroudakis <kingherc@gmail.com>
Here
executor(request.getShardId())
may throw, but we're alreadyhandling a failure so we cannot simply let this exception bubble up.
This commit adjusts things to catch the exception, using it to fail the
listener.
Closes #97286