-
Notifications
You must be signed in to change notification settings - Fork 2k
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 goroutine leakage #15180
Fix goroutine leakage #15180
Conversation
Hi @stswidwinski, nice find and thanks for the fix! Any chance you can sign the CLA? We can't merge anything without that |
I'm working on that. Sorry, please give me a few more days to figure it out.
…On Thu, Nov 10, 2022, 10:21 AM Seth Hoenig ***@***.***> wrote:
Hi @stswidwinski <https://github.com/stswidwinski>, nice find and thanks
for the fix! Any chance you can sign the CLA? We can't merge anything
without that
—
Reply to this email directly, view it on GitHub
<#15180 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AECDANANIHWO6M4WJT4JFEDWHUHGTANCNFSM6AAAAAARZUWZQI>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
@shoenig the CLA has been signed. |
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'm going to lock this pull request because it has been closed for 120 days ⏳. This helps our maintainers find and focus on the active contributions. |
Please see #15179 for a more detailed explanation. The call to
joincontext.Join
generates agoroutine
which must be garbage collected (which means the context cleanup).