From 2c1facf471cce8254e314755c3c7d2fbc753e5f4 Mon Sep 17 00:00:00 2001 From: Siyuan Zhou Date: Wed, 29 Jul 2015 18:02:37 -0400 Subject: SERVER-18498 New replica set configurations have protocolVersion=1 by default --- jstests/multiVersion/mixed_storage_version_replication.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'jstests/multiVersion/mixed_storage_version_replication.js') diff --git a/jstests/multiVersion/mixed_storage_version_replication.js b/jstests/multiVersion/mixed_storage_version_replication.js index 888b4465389..a3a6f36c520 100644 --- a/jstests/multiVersion/mixed_storage_version_replication.js +++ b/jstests/multiVersion/mixed_storage_version_replication.js @@ -612,7 +612,8 @@ function doMultiThreadedWork(primary, numThreads) { // Make sure everyone is syncing from the primary, to ensure we have all combinations of // primary/secondary syncing. config.settings = {chainingAllowed: false}; - replTest.initiate(); + config.protocolVersion = 0; + replTest.initiate(config); // Ensure all are synced. replTest.awaitSecondaryNodes(120000); var primary = replTest.getPrimary(); -- cgit v1.2.1