-
-
Notifications
You must be signed in to change notification settings - Fork 31.7k
Closed WritableStream causes ERR_INTERNAL_ASSERTION #57272
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
Comments
/cc @nodejs/whatwg-stream |
This was referenced Mar 2, 2025
aduh95
pushed a commit
that referenced
this issue
Mar 9, 2025
Signed-off-by: Daeyeon Jeong <[email protected]> PR-URL: #57280 Fixes: #57272 Refs: #56067 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Minwoo Jung <[email protected]> Reviewed-By: Jason Zhang <[email protected]>
aduh95
pushed a commit
that referenced
this issue
Mar 9, 2025
Signed-off-by: Daeyeon Jeong <[email protected]> PR-URL: #57280 Fixes: #57272 Refs: #56067 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Minwoo Jung <[email protected]> Reviewed-By: Jason Zhang <[email protected]>
RafaelGSS
pushed a commit
that referenced
this issue
Apr 1, 2025
Signed-off-by: Daeyeon Jeong <[email protected]> PR-URL: #57280 Fixes: #57272 Refs: #56067 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Minwoo Jung <[email protected]> Reviewed-By: Jason Zhang <[email protected]>
RafaelGSS
pushed a commit
that referenced
this issue
Apr 1, 2025
Signed-off-by: Daeyeon Jeong <[email protected]> PR-URL: #57280 Fixes: #57272 Refs: #56067 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Minwoo Jung <[email protected]> Reviewed-By: Jason Zhang <[email protected]>
aduh95
pushed a commit
that referenced
this issue
Apr 2, 2025
Signed-off-by: Daeyeon Jeong <[email protected]> PR-URL: #57280 Fixes: #57272 Refs: #56067 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Minwoo Jung <[email protected]> Reviewed-By: Jason Zhang <[email protected]>
aduh95
pushed a commit
that referenced
this issue
Apr 3, 2025
Signed-off-by: Daeyeon Jeong <[email protected]> PR-URL: #57280 Fixes: #57272 Refs: #56067 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Minwoo Jung <[email protected]> Reviewed-By: Jason Zhang <[email protected]>
RafaelGSS
pushed a commit
that referenced
this issue
Apr 16, 2025
Signed-off-by: Daeyeon Jeong <[email protected]> PR-URL: #57280 Fixes: #57272 Refs: #56067 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Minwoo Jung <[email protected]> Reviewed-By: Jason Zhang <[email protected]>
RafaelGSS
pushed a commit
that referenced
this issue
Apr 17, 2025
Signed-off-by: Daeyeon Jeong <[email protected]> PR-URL: #57280 Fixes: #57272 Refs: #56067 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Minwoo Jung <[email protected]> Reviewed-By: Jason Zhang <[email protected]>
RafaelGSS
pushed a commit
that referenced
this issue
May 1, 2025
Signed-off-by: Daeyeon Jeong <[email protected]> PR-URL: #57280 Fixes: #57272 Refs: #56067 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Minwoo Jung <[email protected]> Reviewed-By: Jason Zhang <[email protected]>
RafaelGSS
pushed a commit
that referenced
this issue
May 2, 2025
Signed-off-by: Daeyeon Jeong <[email protected]> PR-URL: #57280 Fixes: #57272 Refs: #56067 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Minwoo Jung <[email protected]> Reviewed-By: Jason Zhang <[email protected]>
@aduh95 Now Node.js v20.19 (include 20.19.0 and 20.19.1) also reports this bug. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Version
v22.14.0
Platform
Subsystem
Web Streams
What steps will reproduce the bug?
How often does it reproduce? Is there a required condition?
Always
What is the expected behavior? Why is that the expected behavior?
When this program runs, it should print something like the following:
The correct behavior is that after the stream is closed, continuing to write will cause a
TypeError
saying that the stream is closed.What do you see instead?
Instead, the new version of Node.js v22.14.0 prints this:
Additional information
The correct behavior is consistent with Deno, Bun, the browser, and previous Node.js versions, i.e.
v22.13.1
and before, but recent versions, such asv22.14.0
, are broken.The text was updated successfully, but these errors were encountered: