summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSpencer T Brody <spencer@mongodb.com>2016-09-27 18:08:27 -0400
committerSpencer T Brody <spencer@mongodb.com>2016-09-28 17:08:21 -0400
commitea43e31157ea0402d4176de506399da81b3c7b29 (patch)
treea69d3a301c489076400c61419f2e690935c4db87
parent9c8d1cf08ed9b0eeae08b490df67026af40982cd (diff)
downloadmongo-ea43e31157ea0402d4176de506399da81b3c7b29.tar.gz
SERVER-26362 Increase assert.soon timeout in initial_sync_oplog_rollover.js test
-rw-r--r--jstests/noPassthroughWithMongod/initial_sync_oplog_rollover.js2
-rw-r--r--jstests/replsets/initialsync_with_write_load.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/jstests/noPassthroughWithMongod/initial_sync_oplog_rollover.js b/jstests/noPassthroughWithMongod/initial_sync_oplog_rollover.js
index 55cc54418a9..9904f61b6b1 100644
--- a/jstests/noPassthroughWithMongod/initial_sync_oplog_rollover.js
+++ b/jstests/noPassthroughWithMongod/initial_sync_oplog_rollover.js
@@ -56,7 +56,7 @@
}
}
return false;
- }, 'Did not see a log entry containing the following message: ' + msg, 10000, 1000);
+ }, 'Did not see a log entry containing the following message: ' + msg);
};
checkLog(secondary, 'initial sync - initialSyncHangBeforeCopyingDatabases fail point enabled');
diff --git a/jstests/replsets/initialsync_with_write_load.js b/jstests/replsets/initialsync_with_write_load.js
index 40dcc015d87..74ae28e9df1 100644
--- a/jstests/replsets/initialsync_with_write_load.js
+++ b/jstests/replsets/initialsync_with_write_load.js
@@ -58,7 +58,7 @@ var work = function() {
else
sleep(1);
}
- print("finshing loadgen");
+ print("finishing loadgen");
};
// insert enough that resync node has to go through oplog replay in each step
var loadGen = startParallelShell(work, replTest.ports[0]);