-
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,stream: remove wrong remark on readable.read #15014
Conversation
test/async-hooks/test-graph.tcp.js
Outdated
@@ -17,7 +17,7 @@ const server = net | |||
|
|||
server.listen(common.PORT); | |||
|
|||
net.connect({ port: server.address().port, host: server.address().address }, | |||
net.connect({ port: server.address().port, host: '::1' }, |
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.
unrelated change?
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.
I don't know from where this commit appeared.It might be related to the "allow edits from maintainers" option on the pull request. Or maybe this commit was deleted from master, but is still in my branch?
It also affects #15013
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 to be the reason. I will rebase on master.
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 without the spurious changes.
The returned chunk is *never* longer than `size`.
Did a rebase now. |
The returned chunk is *never* longer than `size`. PR-URL: #15014 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Landed in 8987ae8 |
The returned chunk is *never* longer than `size`. PR-URL: nodejs/node#15014 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
The returned chunk is *never* longer than `size`. PR-URL: nodejs/node#15014 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
The returned chunk is *never* longer than `size`. PR-URL: #15014 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
The returned chunk is *never* longer than `size`. PR-URL: #15014 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
The returned chunk is *never* longer than `size`. PR-URL: #15014 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
The returned chunk is never longer than
size
, if I read the code correctly. I even tested it:Output:
Even tough the stream has ended, the data returned does not exceed
size
bytes.Checklist
Affected core subsystem(s)
stream