Skip to content

Commit 991f82b

Browse files
Trottrvagg
authored andcommitted
test: mitigate flaky test-http-agent
Reduce number of clients from 100 to 16 as Raspberry Pi in CI starts to exhibit flakiness around 22 or so clients. Fixes: #5184 PR-URL: #5346 Reviewed-By: James M Snell <[email protected]>
1 parent 2f9fee6 commit 991f82b

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

test/parallel/parallel.status

+1-2
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,8 @@ test-tls-ticket-cluster : PASS,FLAKY
1111
test-tick-processor : PASS,FLAKY
1212

1313
[$system==linux]
14-
test-http-agent : PASS,FLAKY
1514
test-process-getactivehandles : PASS,FLAKY
16-
test-tick-processor : PASS,FLAKY
15+
test-tick-processor : PASS,FLAKY
1716

1817
[$system==macos]
1918

test/parallel/test-http-agent.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ var server = http.Server(function(req, res) {
99
});
1010

1111
var responses = 0;
12-
var N = 10;
13-
var M = 10;
12+
var N = 4;
13+
var M = 4;
1414

1515
server.listen(common.PORT, function() {
1616
for (var i = 0; i < N; i++) {

0 commit comments

Comments
 (0)