summaryrefslogtreecommitdiff
path: root/jstests/replsets/sync2.js
diff options
context:
space:
mode:
authorEric Milkie <milkie@10gen.com>2014-08-01 11:31:32 -0400
committerEric Milkie <milkie@10gen.com>2014-08-01 11:31:32 -0400
commit243e7efa12db0a92129199388d03197b3415b6cf (patch)
tree5e31bfd467d6e3f9b1df215c0e5dcf37b315c365 /jstests/replsets/sync2.js
parent5d870c10dcc796ef3fcbf9d65414988c44a767b6 (diff)
downloadmongo-243e7efa12db0a92129199388d03197b3415b6cf.tar.gz
Revert "SERVER-14755 increase ReplSetTest timeouts to prevent spurious failures while using HybridCoordinator"
This reverts commit 9ec7d68a97dc54f534e95959e62cafcab38bd440.
Diffstat (limited to 'jstests/replsets/sync2.js')
-rw-r--r--jstests/replsets/sync2.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/replsets/sync2.js b/jstests/replsets/sync2.js
index 4688d86cd43..5969663681a 100644
--- a/jstests/replsets/sync2.js
+++ b/jstests/replsets/sync2.js
@@ -30,14 +30,14 @@ replTest.partition(4,1);
replTest.partition(4,3);
jsTestLog("Checking that ops still replicate correctly");
-var option = { writeConcern: { w: 5, wtimeout: 60000 }};
+var option = { writeConcern: { w: 5, wtimeout: 30000 }};
assert.writeOK(master.getDB("foo").bar.insert({ x: 1 }, option));
// 4 is connected to 3
replTest.partition(4,2);
replTest.unPartition(4,3);
-option = { writeConcern: { w: 5, wtimeout: 60000 }};
+option = { writeConcern: { w: 5, wtimeout: 30000 }};
assert.writeOK(master.getDB("foo").bar.insert({ x: 1 }, option));
replTest.stopSet();