diff options
author | Max Hirschhorn <max.hirschhorn@mongodb.com> | 2015-05-28 12:15:47 -0400 |
---|---|---|
committer | Max Hirschhorn <max.hirschhorn@mongodb.com> | 2015-05-28 12:15:47 -0400 |
commit | 610fab503c216c163c568065a861c2ef95513b3d (patch) | |
tree | d187b31340a843b2e1df849a81ff9ddbc9fb7236 /jstests/noPassthroughWithMongod/index_check10.js | |
parent | 3bec3c4ec50342ecf3bec7f0581b8479ab27aa04 (diff) | |
download | mongo-610fab503c216c163c568065a861c2ef95513b3d.tar.gz |
SERVER-17861 Change the default storage engine to wiredTiger.
WiredTiger is used as the default storage engine if the dbpath does
not contain any data files. Otherwise, the storage engine specified
in the storage.bson metadata file is used when the --storageEngine
flag is omitted from the command line invocation.
Diffstat (limited to 'jstests/noPassthroughWithMongod/index_check10.js')
-rw-r--r-- | jstests/noPassthroughWithMongod/index_check10.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/noPassthroughWithMongod/index_check10.js b/jstests/noPassthroughWithMongod/index_check10.js index f507c687731..5ace6951652 100644 --- a/jstests/noPassthroughWithMongod/index_check10.js +++ b/jstests/noPassthroughWithMongod/index_check10.js @@ -135,7 +135,7 @@ function doIt( indexVersion ) { for( var z = 0; z < 5; ++z ) { var indexVersion = z % 2; var storageEngine = jsTest.options().storageEngine; - if (!storageEngine || storageEngine === 'mmapv1' || indexVersion !== 0) { + if (storageEngine === 'mmapv1' || indexVersion !== 0) { doIt(indexVersion); } } |