summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreg Studer <greg@10gen.com>2012-08-14 10:34:57 -0400
committerEric Milkie <milkie@10gen.com>2012-11-06 16:00:23 -0500
commit209ca5fb267b3b0d84bfa9cbac28c8aed3b8924d (patch)
tree634bdbe66c62502bf66df24347be228b848bde6e
parent1ce89e9ff2dad6b0dade79bd378d5ad4b765c0e3 (diff)
downloadmongo-209ca5fb267b3b0d84bfa9cbac28c8aed3b8924d.tar.gz
SERVER-6765 less aggressive backoff
-rw-r--r--jstests/sharding/mongos_validate_backoff.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/sharding/mongos_validate_backoff.js b/jstests/sharding/mongos_validate_backoff.js
index 9b1ecfc5c50..c4f7e16f864 100644
--- a/jstests/sharding/mongos_validate_backoff.js
+++ b/jstests/sharding/mongos_validate_backoff.js
@@ -39,7 +39,7 @@ for( var test = 0; test < 3; test++ ){
// Kind a heuristic test, we want to make sure that the error wait after sleeping is much less
// than the error wait after a lot of errors
- assert.gt( lastWait, firstWait * 2 * 2 * 2 * 2 )
+ assert.gt( lastWait, firstWait * 2 * 2 )
// Sleeping for long enough to reset our exponential counter
sleep( 3000 )