diff options
author | Siyuan Zhou <siyuan.zhou@mongodb.com> | 2015-07-29 18:02:37 -0400 |
---|---|---|
committer | Siyuan Zhou <siyuan.zhou@mongodb.com> | 2015-09-23 14:50:56 -0400 |
commit | 2c1facf471cce8254e314755c3c7d2fbc753e5f4 (patch) | |
tree | 8e3f51519dd151cda6799dd52e6d0640c4a0ec05 /jstests/noPassthroughWithMongod | |
parent | 75115dfaab9da2854b0fd892ce029781afea2731 (diff) | |
download | mongo-2c1facf471cce8254e314755c3c7d2fbc753e5f4.tar.gz |
SERVER-18498 New replica set configurations have protocolVersion=1 by default
Diffstat (limited to 'jstests/noPassthroughWithMongod')
-rw-r--r-- | jstests/noPassthroughWithMongod/ttl_repl.js | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/jstests/noPassthroughWithMongod/ttl_repl.js b/jstests/noPassthroughWithMongod/ttl_repl.js index 791dc217b44..f56134f5008 100644 --- a/jstests/noPassthroughWithMongod/ttl_repl.js +++ b/jstests/noPassthroughWithMongod/ttl_repl.js @@ -5,6 +5,8 @@ * Part 3: Change the TTL expireAfterSeconds field and check successful propogation to secondary. */ +load("jstests/replsets/rslib.js"); + var rt = new ReplSetTest( { name : "ttl_repl" , nodes: 2 } ); /******** Part 1 ***************/ @@ -64,8 +66,9 @@ assert.eq( 6 , slave1col.count() , "docs not deleted on secondary" ); // add a new secondary, wait for it to fully join var slave = rt.add(); -rt.reInitiate(); -rt.awaitSecondaryNodes(); +var config = rt.getReplSetConfig(); +config.version = 2; +reconfig(rt, config); var slave2col = slave.getDB( 'd' )[ 'c' ]; |