-
Notifications
You must be signed in to change notification settings - Fork 30k
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 parallel/test-http-client-timeout-agent #19804
Comments
3 tasks
And again, this time on FreeBSD: https://ci.nodejs.org/job/node-test-commit-freebsd/16713/nodes=freebsd10-64/console not ok 712 parallel/test-http-client-timeout-agent
---
duration_ms: 2.88
severity: fail
stack: |-
res#0 data:0
res#0 end
res#2 data:2
res#2 end
res#4 data:4
res#4 end
res#6 data:6
res#6 end
res#8 data:8
res#8 end
res#10 data:10
res#10 end
res#12 data:12
res#12 end
res#14 data:14
res#14 end
res#16 data:16
res#16 end
res#18 data:18
res#18 end
res#20 data:20
res#20 end
res#22 data:22
res#22 end
res#24 data:24
res#24 end
res#26 data:26
res#26 end
res#28 data:28
res#28 end
req#1 timeout
req#3 timeout
req#5 timeout
req#7 timeout
req#9 timeout
req#11 timeout
req#13 timeout
req#15 timeout
req#17 timeout
req#19 timeout
req#21 timeout
req#23 timeout
req#25 timeout
req#27 timeout
req#29 timeout
req#0 timeout
req#2 timeout
req#28 close
req#26 close
req#24 close
req#22 close
req#20 close
req#18 close
req#16 close
req#14 close
req#12 close
req#10 close
req#8 close
req#6 close
req#4 close
req#2 close
req#0 close
req#29 error
req#29 close
req#27 error
req#27 close
req#25 error
req#25 close
req#23 error
req#23 close
req#21 error
req#21 close
req#19 error
req#19 close
req#17 error
req#17 close
req#15 error
req#15 close
req#13 error
req#13 close
req#11 error
req#11 close
req#9 error
req#9 close
req#7 error
req#7 close
req#5 error
req#5 close
req#3 error
req#3 close
req#1 error
req#1 close
done=32 sent=30
assert.js:80
throw new AssertionError(obj);
^
AssertionError [ERR_ASSERTION]: 32 strictEqual 30
at process.<anonymous> (/usr/home/iojs/build/workspace/node-test-commit-freebsd/nodes/freebsd10-64/test/parallel/test-http-client-timeout-agent.js:93:10)
at process.emit (events.js:187:15)
... |
Pretty easy to reproduce locally: $ tools/test.py -j 16 --repeat 32 parallel/test-http-client-timeout-agent
=== release test-http-client-timeout-agent ===
Path: parallel/test-http-client-timeout-agent
res#0 data:0
res#0 end
res#2 data:2
res#2 end
res#4 data:4
res#4 end
res#6 data:6
res#6 end
res#8 data:8
res#8 end
res#10 data:10
res#10 end
res#12 data:12
res#12 end
res#14 data:14
res#14 end
res#16 data:16
res#16 end
res#18 data:18
res#18 end
res#20 data:20
res#20 end
req#1 timeout
req#3 timeout
req#5 timeout
req#7 timeout
req#9 timeout
req#11 timeout
req#13 timeout
req#15 timeout
req#17 timeout
req#19 timeout
req#21 timeout
req#22 timeout
req#23 timeout
req#24 timeout
req#25 timeout
req#26 timeout
req#27 timeout
req#28 timeout
req#29 timeout
req#0 timeout
req#2 timeout
req#4 timeout
req#6 timeout
req#8 timeout
req#10 timeout
req#12 timeout
req#14 timeout
req#16 timeout
req#18 timeout
req#20 timeout
req#20 close
req#18 close
req#16 close
req#14 close
req#12 close
req#10 close
req#8 close
req#6 close
req#4 close
req#2 close
req#0 close
req#29 error
req#29 close
req#28 error
req#28 close
req#27 error
req#27 close
req#26 error
req#26 close
req#25 error
req#25 close
req#24 error
req#24 close
req#23 error
req#23 close
req#22 error
req#22 close
req#21 error
req#21 close
req#19 error
req#19 close
req#17 error
req#17 close
req#15 error
req#15 close
req#13 error
req#13 close
req#11 error
req#11 close
req#9 error
req#9 close
req#7 error
req#7 close
req#5 error
req#5 close
req#3 error
req#3 close
req#1 error
req#1 close
done=41 sent=30
assert.js:80
throw new AssertionError(obj);
^
AssertionError [ERR_ASSERTION]: 41 strictEqual 30
at process.<anonymous> (/Users/trott/io.js/test/parallel/test-http-client-timeout-agent.js:93:10)
at process.emit (events.js:187:15)
Command: out/Release/node /Users/trott/io.js/test/parallel/test-http-client-timeout-agent.js
[00:03|% 100|+ 31|- 1]: Done
$ |
Trott
added a commit
to Trott/io.js
that referenced
this issue
Apr 4, 2018
Move resource-sensitive test from parallel to sequential. Fixes: nodejs#19804
2 tasks
3 tasks
4 tasks
santigimeno
added a commit
to santigimeno/node
that referenced
this issue
Apr 7, 2018
Close the connection immediately after receiving the `end` event to avoid that the `timeout` event is fired before the connection closes gracefully. Move the test back to parallel. Fixes: nodejs#19804
BridgeAR
pushed a commit
to BridgeAR/node
that referenced
this issue
Apr 9, 2018
Close the connection immediately after receiving the `end` event to avoid that the `timeout` event is fired before the connection closes gracefully. Move the test back to parallel. PR-URL: nodejs#19856 Fixes: nodejs#19804 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Rich Trott <[email protected]>
targos
pushed a commit
that referenced
this issue
Apr 12, 2018
Move resource-sensitive test from parallel to sequential. Fixes: #19804 PR-URL: #19809 Reviewed-By: Trivikram Kamat <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: James M Snell <[email protected]>
targos
pushed a commit
that referenced
this issue
Apr 12, 2018
Close the connection immediately after receiving the `end` event to avoid that the `timeout` event is fired before the connection closes gracefully. Move the test back to parallel. PR-URL: #19856 Fixes: #19804 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Rich Trott <[email protected]>
BridgeAR
pushed a commit
to BridgeAR/node
that referenced
this issue
May 1, 2018
Move resource-sensitive test from parallel to sequential. Fixes: nodejs#19804 PR-URL: nodejs#19809 Reviewed-By: Trivikram Kamat <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: James M Snell <[email protected]>
BridgeAR
pushed a commit
to BridgeAR/node
that referenced
this issue
May 1, 2018
Close the connection immediately after receiving the `end` event to avoid that the `timeout` event is fired before the connection closes gracefully. Move the test back to parallel. PR-URL: nodejs#19856 Fixes: nodejs#19804 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Rich Trott <[email protected]>
MylesBorins
pushed a commit
that referenced
this issue
Aug 1, 2018
Move resource-sensitive test from parallel to sequential. Fixes: #19804 PR-URL: #19809 Reviewed-By: Trivikram Kamat <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: James M Snell <[email protected]>
MylesBorins
pushed a commit
that referenced
this issue
Aug 1, 2018
Close the connection immediately after receiving the `end` event to avoid that the `timeout` event is fired before the connection closes gracefully. Move the test back to parallel. PR-URL: #19856 Fixes: #19804 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Rich Trott <[email protected]>
rvagg
pushed a commit
that referenced
this issue
Aug 16, 2018
Move resource-sensitive test from parallel to sequential. Fixes: #19804 PR-URL: #19809 Reviewed-By: Trivikram Kamat <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: James M Snell <[email protected]>
rvagg
pushed a commit
that referenced
this issue
Aug 16, 2018
Close the connection immediately after receiving the `end` event to avoid that the `timeout` event is fired before the connection closes gracefully. Move the test back to parallel. PR-URL: #19856 Fixes: #19804 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Rich Trott <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://ci.nodejs.org/job/node-test-commit-aix/13885/nodes=aix61-ppc64/console
The text was updated successfully, but these errors were encountered: