-
Notifications
You must be signed in to change notification settings - Fork 9.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
Do not wait for ready notify if the server is stopping #19041
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files
... and 20 files with indirect coverage changes @@ Coverage Diff @@
## main #19041 +/- ##
==========================================
- Coverage 68.78% 68.78% -0.01%
==========================================
Files 420 420
Lines 35623 35627 +4
==========================================
+ Hits 24504 24505 +1
- Misses 9691 9699 +8
+ Partials 1428 1423 -5 Continue to review full report in Codecov by Sentry.
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: ahrtr, serathius The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
9f75491
to
589769c
Compare
589769c
to
4c07a70
Compare
Signed-off-by: Benjamin Wang <[email protected]>
4c07a70
to
93b01af
Compare
/cherry-pick release-3.5 |
@ahrtr: new pull request created: #19056 In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
/cherry-pick release-3.4 |
@ahrtr: #19041 failed to apply on top of branch "release-3.4":
In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
Extracted from #19040, so as to be reviewed & merged separately.
When server is stopping for whatever reason, the member may fail to publish itself. In that case, it won't close the ready notify channel, accordingly the etcdserver will get blocked on the ready notification (see below).
etcd/server/embed/serve.go
Line 103 in 3cf550d