-
Notifications
You must be signed in to change notification settings - Fork 29.8k
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
http2: The http2 server rejects large headers and the cutoff does not appear to be configurable #35218
Comments
@nodejs/http2 |
@murgatroid99 is it different from: #35233? |
This issue is about the lack of configuration for the size of headers that the server accepts. That other issue is about a crash that occurs when shutting down a server after it receives headers that are very large. |
As mentioned in the issue above, currently I would say that is expected an error code 9 when a request exceeds this limit. What do you think would be better though? |
It was not clear to me until just now that that was a per-header-entry limit. I will test out multiple header entries and if that does allow for larger total headers then I guess this issue will be resolved. |
Ok, let me know. Anyway, I think this information should be added to the docs. |
What steps will reproduce the bug?
How often does it reproduce? Is there a required condition?
This reproduction is 100% consistent
What is the expected behavior?
Expected output:
What do you see instead?
Actual output:
Additional information
I tried configuring this limit using the
maxHeaderListSize
andheaderTableSize
settings, but they seemed to have no effect.The text was updated successfully, but these errors were encountered: