Skip to content

Commit

Permalink
test: mitigate flaky test-https-agent
Browse files Browse the repository at this point in the history
Reduce number of clients from 100 to 16 as Raspberry Pi in CI starts to
exhibit flakiness around 22 or so clients.

Fixes: nodejs#5938
Refs: nodejs#5184
  • Loading branch information
Trott committed Mar 28, 2016
1 parent a17200b commit 7f9df39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/parallel/test-https-agent.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ var server = https.Server(options, function(req, res) {


var responses = 0;
var N = 10;
var M = 10;
var N = 4;
var M = 4;

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

0 comments on commit 7f9df39

Please sign in to comment.