Uh oh!
There was an error while loading. Please reload this page.
stream: add new when constructing ERR_MULTIPLE_CALLBACK - #52110
Conversation
nodejs-github-bot
commented
Mar 16, 2024
Review requested:
|
nodejs-github-bot
commented
Mar 16, 2024
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
e30cf1e to
dcdcf76CompareUh oh!
There was an error while loading. Please reload this page.
nodejs-github-bot
commented
Mar 16, 2024
commit c71e548 changed NodeError from a function to a class, and missed a spot where `ERR_MULTIPLE_CALLBACK` was being instantiated. This commit fixes that by adding the new keyword to that instance. Co-authored-by: Luigi Pinca <luigipinca@gmail.com>
f3e8260 to
a5a3fd7Comparenodejs-github-bot
commented
Mar 17, 2024
nodejs-github-bot
commented
Mar 18, 2024
Commit Queue failed- Loading data for nodejs/node/pull/52110 ✔ Done loading data for nodejs/node/pull/52110 ----------------------------------- PR info ------------------------------------ Title stream: add `new` when constructing `ERR_MULTIPLE_CALLBACK` (#52110) ⚠ Could not retrieve the email or name of the PR author's from user's GitHub profile! Branch haze:pr/hb/err-multiple-callback-fix -> nodejs:main Labels author ready, needs-ci, commit-queue-squash Commits 1 - stream: add `new` when constructing `ERR_MULTIPLE_CALLBACK` Committers 1 - Haze Booth PR-URL: https://github.com/nodejs/node/pull/52110 Reviewed-By: Robert Nagy Reviewed-By: Debadree Chatterjee Reviewed-By: Luigi Pinca ------------------------------ Generated metadata ------------------------------ PR-URL: https://github.com/nodejs/node/pull/52110 Reviewed-By: Robert Nagy Reviewed-By: Debadree Chatterjee Reviewed-By: Luigi Pinca -------------------------------------------------------------------------------- ⚠ Commits were pushed since the last approving review: ⚠ - stream: add `new` when constructing `ERR_MULTIPLE_CALLBACK` ℹ This PR was created on Sat, 16 Mar 2024 03:29:48 GMT ✔ Approvals: 3 ✔ - Robert Nagy (@ronag) (TSC): https://github.com/nodejs/node/pull/52110#pullrequestreview-1940941832 ✔ - Debadree Chatterjee (@debadree25): https://github.com/nodejs/node/pull/52110#pullrequestreview-1940956860 ✔ - Luigi Pinca (@lpinca): https://github.com/nodejs/node/pull/52110#pullrequestreview-1941334372 ✔ Last GitHub CI successful ℹ Last Full PR CI on 2024-03-17T06:35:38Z: https://ci.nodejs.org/job/node-test-pull-request/57784/ - Querying data for job/node-test-pull-request/57784/ ✔ Last Jenkins CI successful -------------------------------------------------------------------------------- ✔ Aborted `git node land` session in /home/runner/work/node/node/.ncuhttps://github.com/nodejs/node/actions/runs/8320924494 |
nodejs-github-bot
commented
Mar 18, 2024
Landed in 63391e7 |
mcollina
commented
Mar 18, 2024
@nodejs/releasers could you include this in the upcoming v18.x release? |
richardlau
commented
Mar 18, 2024
It would break with policy because this hasn't gone out in a current release yet (default policy is that things should be in current for two weeks before going into an LTS line). I'm also confused -- according to the description, this PR fixes an issue introduced by c71e548 which is #49654 and that isn't on v18.x. 😕 |
haze
commented
Mar 26, 2024
@richardlau is this a candidate for v20.x? |
richardlau
commented
Mar 26, 2024
It needs to be released in a Node.js current release (either 21 or 22 when it arrives next month) before it can land in 20.x. |
commit c71e548 changed NodeError from a function to a class, and missed a spot where `ERR_MULTIPLE_CALLBACK` was being instantiated. This commit fixes that by adding the new keyword to that instance. Co-authored-by: Luigi Pinca <luigipinca@gmail.com> PR-URL: #52110 Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: Debadree Chatterjee <debadree333@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
commit c71e548 changed NodeError from a function to a class, and missed a spot where `ERR_MULTIPLE_CALLBACK` was being instantiated. This commit fixes that by adding the new keyword to that instance. Co-authored-by: Luigi Pinca <luigipinca@gmail.com> PR-URL: #52110 Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: Debadree Chatterjee <debadree333@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
commit c71e548 changed NodeError from a function to a class, and missed a spot where
ERR_MULTIPLE_CALLBACKwas being instantiated. This commit fixes that by adding the new keyword to that instance.