-
Notifications
You must be signed in to change notification settings - Fork 29.9k
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
test: move test-http-dump-req-when-res-end to sequential #19819
Conversation
Moving it to sequential != fix |
I'm open to other verbs. "mitigate"? "work around"? Something else? |
"test: move http-dump-req-when-res-ends to sequential" ? |
Works for me! |
The implementataion is sensitive to system resource availability, so move it to sequential instead of running out of parallel directory. Fixes: nodejs#19139
FWIW the test is using
|
Ugh, and fixing that causes the test to fail... |
CI seems ok. @lpinca what should I do? CI is passing with this change. Should I send a PR to fix #19819 (comment)? |
@mcollina yes but by doing that the test fails so I'm not sure if it is working as it was originally intended. |
The following part of the test node/test/parallel/test-http-dump-req-when-res-ends.js Lines 17 to 22 in 49e9893
is not testing anything right now. |
Proper fix in #19823. |
Linux CI re-run: https://ci.nodejs.org/job/node-test-commit-linux/17718/ |
CI re-runs are green. Finally landing. |
Landed in a639ec4 |
The implementataion is sensitive to system resource availability, so move it to sequential instead of running out of parallel directory. Fixes: nodejs#19139 PR-URL: nodejs#19819 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
I don’t think this was needed at with the other PR. The provided command was running fine on my machine. I’m sorry this was landed without a discussion and/or verifying that the other PR solved the problem first. |
I confirmed that the other PR did not fix the problem when multiple tests were running at once. |
The implementataion is sensitive to system resource availability, so
move it to sequential instead of running out of parallel directory.
Fixes: #19139
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passes