We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I would like to propose to make net.errClosing public.
One use case for having this error exposed is to detect http client timeouts as demonstrated by this gist.
At the moment the only way to detect a timeout is to compare error strings:
if res, err := client.Get("http://127.0.0.1:12345/"); err != nil { if strings.HasSuffix(err.Error(), "use of closed network connection") {
If the error string would ever change in the future this detection would break.
The text was updated successfully, but these errors were encountered:
Dup of #4373.
Sorry, something went wrong.
No branches or pull requests
I would like to propose to make net.errClosing public.
One use case for having this error exposed is to detect http client timeouts as demonstrated by this gist.
At the moment the only way to detect a timeout is to compare error strings:
If the error string would ever change in the future this detection would break.
The text was updated successfully, but these errors were encountered: