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
It seems that firefox includes keep-alive in the connection header causing Suave to send back a bad request during the websocket handshake
keep-alive
connection
Suave sends back a 400 bad request because it requires the connection header to be just Upgrade
Upgrade
Suave ignores the other values in the connection header and processes the connection upgrade
manually strip the other values from the connection header before sending the request to the handshake.
The text was updated successfully, but these errors were encountered:
7b49ffa
Hi @Zeroto I've pushed a new pre-release v2.5.0-beta2 with a fix. Please give it a try. Thanks.
Sorry, something went wrong.
Works ok now. Thanks 😄
No branches or pull requests
Description
It seems that firefox includes
keep-alive
in theconnection
header causing Suave to send back a bad request during the websocket handshakeCurrent behaviour:
Suave sends back a 400 bad request because it requires the connection header to be just
Upgrade
Desired behaviour:
Suave ignores the other values in the
connection
header and processes the connection upgradeWorkaround
manually strip the other values from the connection header before sending the request to the handshake.
The text was updated successfully, but these errors were encountered: