diff options
author | Max Hirschhorn <max.hirschhorn@mongodb.com> | 2015-05-26 20:27:50 -0400 |
---|---|---|
committer | Max Hirschhorn <max.hirschhorn@mongodb.com> | 2015-05-26 20:27:50 -0400 |
commit | a335b35b2e95538220941960764e6f60136b3973 (patch) | |
tree | 7f032302b5258df827e2cbfd726584414e88ae57 /src/mongo/db/service_context_noop.cpp | |
parent | 3a54c4caa2a5b0d0689a73de0fad3b6be84b5a8c (diff) | |
download | mongo-a335b35b2e95538220941960764e6f60136b3973.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 'src/mongo/db/service_context_noop.cpp')
-rw-r--r-- | src/mongo/db/service_context_noop.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/service_context_noop.cpp b/src/mongo/db/service_context_noop.cpp index 8b43c4e1bbf..47c3efe8797 100644 --- a/src/mongo/db/service_context_noop.cpp +++ b/src/mongo/db/service_context_noop.cpp @@ -39,7 +39,7 @@ namespace mongo { return NULL; } - void ServiceContextNoop::setGlobalStorageEngine(const std::string& name) { + void ServiceContextNoop::initializeGlobalStorageEngine() { } void ServiceContextNoop::shutdownGlobalStorageEngineCleanly() { |