-
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
doc: clarify stream errors while reading and writing #29653
Closed
Closed
Conversation
This file contains 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
nodejs-github-bot
added
doc
Issues and PRs related to the documentations.
stream
Issues and PRs related to the stream subsystem.
labels
Sep 22, 2019
ronag
force-pushed
the
fix-doc-readable-error
branch
from
September 22, 2019 14:13
ce06247
to
9c91dd2
Compare
ronag
changed the title
doc: clarify stream errors while reading
doc: clarify stream errors while reading and writing
Sep 22, 2019
Errors should be propagated through destroy(err), anything else is basically undefined behaviour.
ronag
force-pushed
the
fix-doc-readable-error
branch
3 times, most recently
from
September 22, 2019 14:23
df3867e
to
ee486d4
Compare
ronag
force-pushed
the
fix-doc-readable-error
branch
from
September 22, 2019 14:47
ee486d4
to
25c4396
Compare
lpinca
approved these changes
Sep 22, 2019
BridgeAR
approved these changes
Sep 23, 2019
Fishrock123
added a commit
to Fishrock123/bob
that referenced
this pull request
Sep 23, 2019
Fishrock123
approved these changes
Sep 23, 2019
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.
This seems like the correct, better approach to me. I'd really like other streams folks confirmation though.
billouboq
reviewed
Sep 24, 2019
ronag
commented
Sep 24, 2019
jasnell
reviewed
Sep 25, 2019
jasnell
reviewed
Sep 25, 2019
Co-Authored-By: James M Snell <jasnell@gmail.com>
Co-Authored-By: James M Snell <jasnell@gmail.com>
Co-Authored-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
Co-Authored-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
Co-Authored-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
Co-Authored-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
mcollina
approved these changes
Sep 27, 2019
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.
LGTM
Trott
pushed a commit
that referenced
this pull request
Sep 27, 2019
Errors should be propagated through destroy(err). Anything else is basically undefined behaviour. PR-URL: #29653 Refs: #29584 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Landed in 7223ce2 |
targos
pushed a commit
that referenced
this pull request
Oct 1, 2019
Errors should be propagated through destroy(err). Anything else is basically undefined behaviour. PR-URL: #29653 Refs: #29584 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Sign up for free
to 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.
Errors should be propagated through destroy(err) for readable and callback for writable, anything else is undefined behaviour.
Refs: #29584
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passes