| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
|
Review requested:
|
Sorry, something went wrong.
There was a problem hiding this comment.
LGTM if CI agrees
Sorry, something went wrong.
|
Seems CI agrees! 🎉 |
Sorry, something went wrong.
Sorry, something went wrong.
Fixes: nodejs#47708 PR-URL: nodejs#47712 Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Feng Yu <F3n67u@outlook.com>
| Back | FazBrowse Home | New Git URL |
In the previous implementation
we had
node/lib/internal/streams/pipeline.js
Line 126 in 32e478d
which would have called resume() only when the stream ended thus resolving the promise over here
node/lib/internal/streams/pipeline.js
Line 143 in 32e478d
but for end: false eos would never call resume as the stream doesn't end, hence we wait() only if the stream is stated to end
Fixes: #47708