-
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
http: onFinish will not be triggered again when finished #35845
Conversation
Review requested:
|
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
verified latest pr-commit 6e1c697 fixed regression #35833 in windows (using git-bash): #!/bin/sh
./out/Release/node.exe -e '
require("http").createServer(function (ignore, res) {
res.on("error", function () {
return;
});
res.end("cc");
res.end("dd");
}).listen(8081, function () {
require("http").request("http://localhost:8081").end();
});
setTimeout(process.exit, 5000);
'
# stderr output - none |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
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.
Can't this be solved just by putting the if (chunk)
branch after the if (this.finished)
branch?
@ronag Thanks for you comment, that's what I thought at first, but I realized that this would behave differently than the v14 version, with two problems:
|
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Commit Queue failed- Loading data for nodejs/node/pull/35845 ✔ Done loading data for nodejs/node/pull/35845 ----------------------------------- PR info ------------------------------------ Title http: onFinish will not be triggered again when finished (#35845) Author Ricky Zhou <[email protected]> (@rickyes) Branch rickyes:fix/http-outgoing-end -> nodejs:master Labels author ready, commit-queue, dont-land-on-v10.x, dont-land-on-v12.x, dont-land-on-v14.x, http Commits 5 - http: OnFinish will not be triggered again when finished - fixup - fixup - fixup! got error event before error callback - fixup! callback order align with stream.Writable Committers 1 - rickyes <[email protected]> PR-URL: https://github.com/nodejs/node/pull/35845 Fixes: https://github.com/nodejs/node/issues/35833 Reviewed-By: Robert Nagy Reviewed-By: Matteo Collina Reviewed-By: Rich Trott ------------------------------ Generated metadata ------------------------------ PR-URL: https://github.com/nodejs/node/pull/35845 Fixes: https://github.com/nodejs/node/issues/35833 Reviewed-By: Robert Nagy Reviewed-By: Matteo Collina Reviewed-By: Rich Trott -------------------------------------------------------------------------------- ✖ Last GitHub CI failed ℹ Last Full PR CI on 2020-11-12T01:40:04Z: https://ci.nodejs.org/job/node-test-pull-request/34349/ - Querying data for job/node-test-pull-request/34349/ ✔ Build data downloaded ✔ Last Jenkins CI successful ℹ This PR was created on Wed, 28 Oct 2020 07:21:43 GMT ✔ Approvals: 3 ✔ - Robert Nagy (@ronag): https://github.com/nodejs/node/pull/35845#pullrequestreview-526035746 ✔ - Matteo Collina (@mcollina) (TSC): https://github.com/nodejs/node/pull/35845#pullrequestreview-525944547 ✔ - Rich Trott (@Trott) (TSC): https://github.com/nodejs/node/pull/35845#pullrequestreview-529123959 -------------------------------------------------------------------------------- ✔ Aborted `git node land` session in /home/runner/work/node/node/.ncu Commit Queue action: https://github.com/nodejs/node/actions/runs/360068464 |
PR-URL: #35845 Fixes: #35833 Reviewed-By: Robert Nagy <[email protected]> Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Rich Trott <[email protected]>
Landed in e6e64f7 |
PR-URL: #35845 Fixes: #35833 Reviewed-By: Robert Nagy <[email protected]> Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Rich Trott <[email protected]>
When the
.end()
is called with the payload again after the end, directly return and pass theERR_STREAM_WRITE_AFTER_END
error to thecallback
anderror
event.Fixes: #35833
/cc @ronag @kaizhu256
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passes