summaryrefslogtreecommitdiff
path: root/jstests/noPassthroughWithMongod/ttl_repl.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/noPassthroughWithMongod/ttl_repl.js')
-rw-r--r--jstests/noPassthroughWithMongod/ttl_repl.js11
1 files changed, 6 insertions, 5 deletions
diff --git a/jstests/noPassthroughWithMongod/ttl_repl.js b/jstests/noPassthroughWithMongod/ttl_repl.js
index 3b251dfa8a9..5646ce22a39 100644
--- a/jstests/noPassthroughWithMongod/ttl_repl.js
+++ b/jstests/noPassthroughWithMongod/ttl_repl.js
@@ -29,9 +29,11 @@ masterdb.createCollection(mastercol.getName(), {usePowerOf2Sizes: false});
// create new collection. insert 24 docs, aged at one-hour intervalss
now = (new Date()).getTime();
-for ( i=0; i<24; i++ )
- mastercol.insert( { x : new Date( now - ( 3600 * 1000 * i ) ) } );
-masterdb.getLastError();
+var bulk = mastercol.initializeUnorderedBulkOp();
+for ( i=0; i<24; i++ ) {
+ bulk.insert({ x: new Date( now - ( 3600 * 1000 * i )) });
+}
+assert.writeOK(bulk.execute());
rt.awaitReplication();
assert.eq( 24 , mastercol.count() , "docs not inserted on primary" );
assert.eq( 24 , slave1col.count() , "docs not inserted on secondary" );
@@ -48,8 +50,7 @@ assert.eq( 0 , slave1col.stats().userFlags , "userFlags not 0 on secondary");
// create TTL index, wait for TTL monitor to kick in, then check that
// userFlags get set to 1, and correct number of docs age out
-mastercol.ensureIndex( { x : 1 } , { expireAfterSeconds : 20000 } );
-masterdb.getLastError();
+assert.commandWorked(mastercol.ensureIndex({ x: 1 }, { expireAfterSeconds: 20000 }));
rt.awaitReplication();
sleep(70*1000); // TTL monitor runs every 60 seconds, so wait 70