Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
test: pummel/net-connect-econnrefused backoff
Browse files Browse the repository at this point in the history
We were trying too hard to connect, and getting timeouts instead of
the refusals, slow down how hard we try.
  • Loading branch information
tjfontaine committed Feb 25, 2014
1 parent bfc823d commit 67dfcd5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/pummel/test-net-connect-econnrefused.js
Expand Up @@ -25,8 +25,8 @@ var common = require('../common');
var assert = require('assert');
var net = require('net');

var ROUNDS = 5;
var ATTEMPTS_PER_ROUND = 200;
var ROUNDS = 10;
var ATTEMPTS_PER_ROUND = 100;
var rounds = 1;
var reqs = 0;

Expand Down

0 comments on commit 67dfcd5

Please sign in to comment.