From fdbf689f653c3dd203c5f57372dc1859d31600bc Mon Sep 17 00:00:00 2001 From: Spencer T Brody Date: Thu, 20 Dec 2012 19:18:12 -0500 Subject: [PATCH] Increase timeout for awaitReplication in sync_passive2.js --- jstests/replsets/sync_passive2.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jstests/replsets/sync_passive2.js b/jstests/replsets/sync_passive2.js index 6c222a523ba80..57d44504d558a 100644 --- a/jstests/replsets/sync_passive2.js +++ b/jstests/replsets/sync_passive2.js @@ -199,7 +199,7 @@ try { replTest.getMaster().getDB("admin").runCommand({replSetReconfig:config}); } catch (x) { /* expected */ } -replTest.awaitReplication(); +replTest.awaitReplication(60000); print("force 2 to sync from 3"); replTest.nodes[2].getDB("admin").runCommand({replSetSyncFrom: replTest.host+":"+replTest.ports[3]});