Skip to content

Commit 6113f6a

Browse files
Trottevanlucas
authored andcommitted
test: mitigate flaky test-https-agent
Reduce number of clients from 100 to 16 as Raspberry Pi in CI starts to exhibit flakiness around 22 or so clients. PR-URL: #5939 Fixes: #5938 Refs: #5184 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Jeremiah Senkpiel <[email protected]>
1 parent 0acca76 commit 6113f6a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/parallel/test-https-agent.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ var server = https.Server(options, function(req, res) {
2323

2424

2525
var responses = 0;
26-
var N = 10;
27-
var M = 10;
26+
var N = 4;
27+
var M = 4;
2828

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

0 commit comments

Comments
 (0)