-
Notifications
You must be signed in to change notification settings - Fork 29.7k
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
investigate flaky test/parallel/test-http-many-ended-pipelines.js #37291
Comments
I'm able to replicate this locally with this command:
If I remove the |
It seems to me that the test is flaky by design. The socket might be destroyed server-side while the client is still writing to it. |
I think the test is missing a |
The issue can be exacerbated by increasing Also, there seems to be an unwanted Lines 180 to 183 in 33d3a2e
Line 178 in 33d3a2e
finished() from being called again with the same socket argument.
|
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
The socket might be destroyed by the other peer while data is still being written. Add the missing error handler. Fixes: nodejs#37291
The socket might be destroyed by the other peer while data is still being written. Add the missing error handler. Fixes: nodejs#37291
The socket might be destroyed by the other peer while data is still being written. Add the missing error handler. Fixes: nodejs#37291
The text was updated successfully, but these errors were encountered: