-
Notifications
You must be signed in to change notification settings - Fork 41
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
ndt-server: disable http2 for ndt7 and ndt5 #270
Comments
Does the current code impact browser clients? |
When I fetch https://ndt-iupui-mlab2-mil03.measurement-lab.org/ with chrome, it's using
So, the answer to your question, @stephen-soltesz is "no". |
I believe this issue is obsolete. Please reopen if you disagree. |
@stephen-soltesz has it been fixed by disabling h2? While it's not breaking clients now, it may break clients in the future when h2 increasingly becomes the norm, for this reason I think it is better to keep it open. The quote above, pulled from a discussion of a Chrome feature, explains the policy that Chrome is currently using vis a vis h2. Yet, our server is still replying with (But I don't have the power to re-open the issue, so I think I cannot do myself the "reopen if you disagree" part.) |
Thanks! |
By default Go enables http2, however gorilla/websocket does not support http2. So, we need to disable http2 otherwise a client may attempt to perform WebSocket using http2, as instructed by ALPN, but that process fails. This Stack Overflow thread may be useful to show us how to disable http2.
The text was updated successfully, but these errors were encountered: