-
Notifications
You must be signed in to change notification settings - Fork 196
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
Crash if server receives an invalid method name #337
Comments
Well, if I change |
@crystalfp Hey, I am trying to reproduce the error but i am getting |
I can reproduce it. These are the module versions from my package.json:
Machine is Windows 10 64 bits Thanks for your help! |
I can reproduce also on node version 10.15.0 |
Check #333 spdy crash with node 10.* . You can follow that thread for future update |
So it's a duplicate issue. We can close it. @crystalfp do you want to add something |
Seems nodejs + http2 is at a turning point. Seems better for me to wait for express 5.0 and get rid of spdy altogether. In the mean time, thanks for your clarifications. |
👍 |
I use
spdy
module to provide http2 for my express API server.I access the API with the following
curl
command:Note that I access the API with an invalid method name. In this case the server crashes with the following stack trace:
If you change
if(false)
toif(true)
the server does not crash and curl returns "empty reply from server". So really don't know if it is a spdy problem or something that comes form the spdy interaction with express. Please advise. Thanks!The text was updated successfully, but these errors were encountered: