-
Notifications
You must be signed in to change notification settings - Fork 297
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
Use net.ErrClosed #286
Labels
Milestone
Comments
Will do, thanks for reporting! |
emersion
added a commit
to emersion/websocket
that referenced
this issue
May 19, 2021
Go 1.16 has introduced net.ErrClosed, which should be returned/wrapped when an I/O call is performed on a network connection which has already been closed. This is useful to avoid cluttering logs with messages like "failed to close WebSocket: already wrote close". Closes: coder#286
Merged
emersion
added a commit
to emersion/websocket
that referenced
this issue
May 19, 2021
Go 1.16 has introduced net.ErrClosed, which should be returned/wrapped when an I/O call is performed on a network connection which has already been closed. This is useful to avoid cluttering logs with messages like "failed to close WebSocket: already wrote close". Closes: coder#286
emersion
added a commit
to emersion/websocket
that referenced
this issue
May 19, 2021
Go 1.16 has introduced net.ErrClosed, which should be returned/wrapped when an I/O call is performed on a network connection which has already been closed. This is useful to avoid cluttering logs with messages like "failed to close WebSocket: already wrote close". Closes: coder#286
emersion
added a commit
to emersion/websocket
that referenced
this issue
Mar 7, 2023
Go 1.16 has introduced net.ErrClosed, which should be returned/wrapped when an I/O call is performed on a network connection which has already been closed. This is useful to avoid cluttering logs with messages like "failed to close WebSocket: already wrote close". Closes: coder#286
nhooyr
pushed a commit
to emersion/websocket
that referenced
this issue
Oct 13, 2023
Go 1.16 has introduced net.ErrClosed, which should be returned/wrapped when an I/O call is performed on a network connection which has already been closed. This is useful to avoid cluttering logs with messages like "failed to close WebSocket: already wrote close". Closes: coder#286
Done in #303 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Go 1.16 has introduced
net.ErrClosed
, which should be returned/wrapped when an I/O call is performed on a network connection which has already been closed. This is useful to avoid cluttering logs with messages likefailed to close WebSocket: already wrote close
.The text was updated successfully, but these errors were encountered: