0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-30 17:10:48 +01:00

SERVER-19289 Sharding tests should always use wiredTiger as the storage engine when using replica set config servers

This commit is contained in:
Daniel Alabi 2015-07-08 14:21:32 -04:00
parent 5bd86559ad
commit 15f5733573

View File

@ -319,9 +319,12 @@ ShardingTest = function( testName , numShards , verboseLevel , numMongos , other
keyFile : keyFile,
name: testName + "-configRS"
};
// when using CSRS, always use wiredTiger as the storage engine
var startOptions = { pathOpts: pathOpts,
configsvr : "",
noJournalPrealloc : otherParams.nopreallocj,
storageEngine : "wiredTiger"
};
startOptions = Object.merge( startOptions, ShardingTest.configOptions || {} )