-
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
Allowing HEAD method to work with keep-alive #34231
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mostly LGTM, thanks for doing this. Can you also test the 304 status code?
It seems that the only tests failing are flakey. Is there additional action required on my part? |
@josephhackman No action on your part is needed but since this is a fairly subtle change it'd be good to get at least one more sign-off from a @nodejs/http member. |
Re-factoring to address PR comment. The logic here gets somewhat complicated with regards to the if-elseif block circa line 434. The goal of this PR is to prevent head requests from having their Content-Length or Content-Encoding headers cleared except when necessary, which is when the response code is 204 or 304. In trying to address comment, I'm balancing between a larger re-factor than absolutely needed and somewhat ugly control logic. Refs: nodejs#34231 (comment)
Just as a side note. HEAD requests have an edge case due to which many HTTP clients (including the node one) will always close the connection and ignore keep-alive. |
This isn't quite true. The node client will close a the connection on a HEAD response if neither the These headers are allowed by the HTTP standard, so this change should keep the node server just as compliant as it always was, while allowing any properly-implemented client to be substantially faster while sending many HEAD requests to collect metadata. On the other hand, it is possible that non-standards-compliant clients exist that would malfunction seeing these headers on a HEAD request. I think that's a minimal risk because most people don't implement their own HTTP client library, but many people do mess with the headers on their servers. This leads me to expect that clients tend to be standards-compliant, and if anything, hardened. Refs: https://tools.ietf.org/html/rfc7231#section-3.3 |
This needs another approval. I'm not comfortable in my own knowledge here to give the second one. @nodejs/http |
Fixes: nodejs#28438 PR-URL: nodejs#34231 Reviewed-By: James M Snell <[email protected]>
Landed in 7afa533 🎉 Thanks a lot for your contribution! |
Fixes: #28438 PR-URL: #34231 Reviewed-By: James M Snell <[email protected]>
Fixes: #28438 PR-URL: #34231 Reviewed-By: James M Snell <[email protected]>
I'm not convinced this was a good change. My HEAD methods with status 200 now send
Seems to me the sensible default would have been |
Fixes: #28438
This approach specifically retains the non-hanging of 204 requests while allowing HEAD to function correctly with keeping sockets open. I check for 204 + 304 specifically rather than the HEAD method because the method is in _http_server, not _http_outgoing, though it could be passed along if that's preferred.
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passes