Uh oh!
There was an error while loading. Please reload this page.
fs: fix WriteStream autoClose order - #31790
Closed
ronag wants to merge 1 commit into
Closed
Conversation
WriteStream autoClose was implemented by manually calling .destroy() instead of using autoDestroy and callback. This caused some invariants related to order of events to be broken. Fixes: nodejs#31776
ronagforce-pushed
the
fs-autoclose-order
branch
from
February 14, 2020 12:35
cf8e4bb to
4a9b795Comparenodejs-github-bot
commented
Feb 14, 2020
Collaborator
jasnell
approved these changes
Feb 14, 2020
lpinca
approved these changes
Feb 14, 2020
ronag
commented
Feb 16, 2020
MemberAuthor
Landed in 568fdfb |
ronag added a commit
that referenced
this pull request
Feb 16, 2020
WriteStream autoClose was implemented by manually calling .destroy() instead of using autoDestroy and callback. This caused some invariants related to order of events to be broken. Fixes: #31776 PR-URL: #31790 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
ronag
commented
Feb 16, 2020
MemberAuthor
I believe the lts-watch label is appropriate on this PR. Please let me know if incorrect. |
MylesBorins
commented
Mar 4, 2020
Contributor
This doesn't land cleanly on v13.x could it please be backported |
7 tasks
4 tasks
This comment has been minimized.
This comment has been minimized.
ronag added a commit
to nxtedition/node
that referenced
this pull request
Mar 10, 2020
WriteStream autoClose was implemented by manually calling .destroy() instead of using autoDestroy and callback. This caused some invariants related to order of events to be broken. Fixes: nodejs#31776 PR-URL: nodejs#31790 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Backport-PR-URL: nodejs#32163
MylesBorins pushed a commit
that referenced
this pull request
Mar 11, 2020
WriteStream autoClose was implemented by manually calling .destroy() instead of using autoDestroy and callback. This caused some invariants related to order of events to be broken. Fixes: #31776 Backport-PR-URL: #32163 PR-URL: #31790 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
WriteStream autoClose was implemented by manually
calling .destroy() instead of using autoDestroy
and callback. This caused some invariants related
to order of events to be broken.
Fixes: #31776
Checklist
make -j4 test(UNIX), orvcbuild test(Windows) passes