Browse Source

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: https://github.com/nodejs/node/pull/5939
Fixes: https://github.com/nodejs/node/issues/5938
Refs: https://github.com/nodejs/node/issues/5184
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
v4.x
Rich Trott 9 years ago
committed by Myles Borins
parent
commit
cc1aab9f6a
  1. 4
      test/parallel/test-https-agent.js

4
test/parallel/test-https-agent.js

@ -23,8 +23,8 @@ var server = https.Server(options, function(req, res) {
var responses = 0; var responses = 0;
var N = 10; var N = 4;
var M = 10; var M = 4;
server.listen(common.PORT, function() { server.listen(common.PORT, function() {
for (var i = 0; i < N; i++) { for (var i = 0; i < N; i++) {

Loading…
Cancel
Save