You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: handle HTTP/2 requests with pseudo-headers (#534)
HTTP/2 requests are required to have a specific set of request and response "pseudo-headers":
https://www.rfc-editor.org/rfc/rfc9113.html#name-request-pseudo-header-field.
When converting a Node.js `IncomingMessage` to a Web `Request`, we must ignore these pseudo-headers
because `IncomingMessage.prototype.headers` *does* contain them, but newer versions of Node.js will
throw on `new Request()` if given any such header.
0 commit comments