-
Notifications
You must be signed in to change notification settings - Fork 4.3k
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
Fix a Deadlock on HA leadership transfer #12691
Conversation
was actively forwarding a request fixes GH #12601
* Fix a Deadlock on HA leadership transfer when standby was actively forwarding a request fixes GH #12601 * adding the changelog
* Fix a Deadlock on HA leadership transfer when standby was actively forwarding a request fixes GH #12601 * adding the changelog
* Fix a Deadlock on HA leadership transfer when standby was actively forwarding a request fixes GH #12601 * adding the changelog
@hghaf099 and @ncabatoff although this fix seems only to apply to perf standbys which are not included in OSS vault, can you please clarify if this fix applies to the OSS users too? It's unclear if the code path that leads to the deadlock applies to OSS. Thanks. |
Yes, it applies to OSS. The deadlock involves access to a mutex-protected field named perfStandby, but the field is accessed even by regular standbys. |
Thank you very much! |
…#12721) * Fix a Deadlock on HA leadership transfer when standby was actively forwarding a request fixes GH hashicorp#12601 * adding the changelog
…#12722) * Fix a Deadlock on HA leadership transfer when standby was actively forwarding a request fixes GH hashicorp#12601 * adding the changelog
Fix a Deadlock on HA leadership transfer when standby was actively forwarding a request
fixes GH #12601