-
Notifications
You must be signed in to change notification settings - Fork 5.9k
Fix healthz socket #2737
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 healthz socket #2737
Conversation
89dfd78
to
3451265
Compare
Forgot to resume. Went ahead and did the same for the test plugin although it only sends messages and doesn't receive any.
3451265
to
2d8b785
Compare
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.
Woo! Nice work and thanks for adding some tests 🎉
// If there are sockets remaining we might need to force close them or | ||
// this promise might never resolve. |
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.
Great comments! 👏
// If there are sockets remaining we might need to force close them or | ||
// this promise might never resolve. | ||
if (this.sockets.size > 0) { | ||
// Give sockets a chance to close up shop. |
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.
😎
CI failure looks like a timeout from something external.
|
Was having problems with the healthz socket, turns out I forgot to
resume
. Added some tests while I was at it.