-
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
http: do not blindly destroy UNIX domain sockets #15650
Conversation
I think a better commit message might be: 'http: do not blindly destroy UNIX domain sockets' |
`Connection: keep-alive` is now properly supported when making client connections to UNIX domain sockets so `request.abort()` should not blindly destroy the underlying socket. Refs: nodejs#13214 (comment)
7f213d8
to
a12dce0
Compare
@mscdex done, thank you. |
Is there a particular reason this stalled? ping @nodejs/http |
CI: https://ci.nodejs.org/job/node-test-pull-request/10826/ Last one is no longer available. |
CI is good, all known failures. |
@lpinca you should be good to merge this, if you want. |
@apapirovski go for it if you have time. |
Landed in eb2fbd1 |
`Connection: keep-alive` is now properly supported when making client connections to UNIX domain sockets so `request.abort()` should not blindly destroy the underlying socket. PR-URL: #15650 Refs: #13214 (comment) Reviewed-By: Anatoli Papirovski <[email protected]>
This depends on #13214 so applying the same label re: v6.x |
`Connection: keep-alive` is now properly supported when making client connections to UNIX domain sockets so `request.abort()` should not blindly destroy the underlying socket. PR-URL: #15650 Refs: #13214 (comment) Reviewed-By: Anatoli Papirovski <[email protected]>
`Connection: keep-alive` is now properly supported when making client connections to UNIX domain sockets so `request.abort()` should not blindly destroy the underlying socket. PR-URL: nodejs/node#15650 Refs: nodejs/node#13214 (comment) Reviewed-By: Anatoli Papirovski <[email protected]>
`Connection: keep-alive` is now properly supported when making client connections to UNIX domain sockets so `request.abort()` should not blindly destroy the underlying socket. PR-URL: nodejs/node#15650 Refs: nodejs/node#13214 (comment) Reviewed-By: Anatoli Papirovski <[email protected]>
Connection: keep-alive
is now properly supported when making clientconnections to UNIX domain sockets so
request.abort()
should notblindly destroy the underlying socket.
Refs: #13214 (comment)
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passesAffected core subsystem(s)
http