-
Notifications
You must be signed in to change notification settings - Fork 4
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
track go/issues/54136 : per-request timeouts #92
Comments
komuw
changed the title
track go/issues/54136
track go/issues/54136 : per-request timeouts
Sep 7, 2022
Note that the current |
Note that this will be in Go1.20: golang/go@fd0c0db From that commit message, we can now do; c := http.NewResponseController(w)
c.Flush()
vs.
if f, ok := w.(http.Flusher); ok {
f.Flush()
} |
golang/go#58237 : panic in Go |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
golang/go#54136
The text was updated successfully, but these errors were encountered: