We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Run server using the following code with Node 12.19. It works on v12.18.4.
const http = require('http'); const server = http.createServer((req, res) => { req.pipe(process.stdout); }); console.log('Running...'); server.listen(3000);
A client streams as follows.
seq inf | pv --rate-limit 10 | curl -sST- localhost:3000
In just one minute, the server disconnects the connection.
See the demo video below. https://youtu.be/8I-gNn6GS2g?t=60
Always.
Not disconnect.
The text was updated successfully, but these errors were encountered:
I think this is a duplicate of #35661
Shoud be fixed in 12.20.0 currently in preparation.
I will close this. Please reopen in case my assessment is wrong.
Sorry, something went wrong.
No branches or pull requests
What steps will reproduce the bug?
Run server using the following code with Node 12.19. It works on v12.18.4.
A client streams as follows.
In just one minute, the server disconnects the connection.
Demo video
See the demo video below.
https://youtu.be/8I-gNn6GS2g?t=60
How often does it reproduce? Is there a required condition?
Always.
What is the expected behavior?
Not disconnect.
The text was updated successfully, but these errors were encountered: