-
Notifications
You must be signed in to change notification settings - Fork 29.6k
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
support nested headers in http2 #33568
Comments
32 tasks
This was referenced Jan 25, 2022
This was referenced Sep 27, 2022
This was referenced Sep 28, 2022
This was referenced Dec 15, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Actual Behaviour
For the snippet given below, http1 returns
['A','B']
, but http2 returns only['B']
.Expected Behavior
http2 should return
['A','B']
.Reproduction Code
I think this is caused by an unintentional override inside
kSetHeaders
method, see below.node/lib/internal/http2/compat.js
Line 592 in 5007611
The text was updated successfully, but these errors were encountered: