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.

PR-URL: #5939
Fixes: #5938
Refs: #5184
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: Jeremiah Senkpiel <[email protected]>
  • Loading branch information
Trott authored and Myles Borins committed Apr 11, 2016
1 parent 10fe79b commit cc1aab9
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 cc1aab9

Please sign in to comment.