-
-
Notifications
You must be signed in to change notification settings - Fork 33.9k
Closed
Labels
quicIssues and PRs related to the QUIC implementation / HTTP/3.Issues and PRs related to the QUIC implementation / HTTP/3.
Description
- Version: master with QUIC
- Platform: Linux
- Subsystem: stream
What steps will reproduce the bug?
node test/parallel/test-quic-simple-server-uni.js
How often does it reproduce? Is there a required condition?
QUIC must be enabled
Additional information
node/lib/internal/streams/readable.js
Line 1098 in 7083425
| const chunk = stream.destroyed ? null : stream.read(); |
This line, committed 10 days ago, is the culprit, removing the
stream.destroyed condition makes it workThis happens when the stream has been asynchronously closed by the time the last read call is made
Metadata
Metadata
Assignees
Labels
quicIssues and PRs related to the QUIC implementation / HTTP/3.Issues and PRs related to the QUIC implementation / HTTP/3.