Skip to content

Commit 8899016

Browse files
TrottMyles Borins
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 <jasnell@gmail.com>
1 parent 48d069d commit 8899016

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

test/parallel/parallel.status

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ prefix parallel
1010
test-tick-processor : PASS,FLAKY
1111

1212
[$system==linux]
13-
test-http-agent : PASS,FLAKY
1413
test-tick-processor : PASS,FLAKY
1514

1615
[$system==macos]

test/parallel/test-http-agent.js

Lines changed: 2 additions & 2 deletions
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)