diff options
author | Max Hirschhorn <max.hirschhorn@mongodb.com> | 2015-05-27 08:49:03 -0400 |
---|---|---|
committer | Max Hirschhorn <max.hirschhorn@mongodb.com> | 2015-05-27 08:49:03 -0400 |
commit | 12d9dea1912757d703d60473baf37a5dc79a8883 (patch) | |
tree | 4547914015f99a227c47a646c45874ed7a17cd8d /src/mongo/db/service_context.h | |
parent | a335b35b2e95538220941960764e6f60136b3973 (diff) | |
download | mongo-12d9dea1912757d703d60473baf37a5dc79a8883.tar.gz |
Revert "SERVER-17861 Change the default storage engine to wiredTiger."
This reverts commit a335b35b2e95538220941960764e6f60136b3973.
Diffstat (limited to 'src/mongo/db/service_context.h')
-rw-r--r-- | src/mongo/db/service_context.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mongo/db/service_context.h b/src/mongo/db/service_context.h index 3833ff69d85..40cee393d25 100644 --- a/src/mongo/db/service_context.h +++ b/src/mongo/db/service_context.h @@ -197,7 +197,10 @@ namespace mongo { */ virtual StorageFactoriesIterator* makeStorageFactoriesIterator() = 0; - virtual void initializeGlobalStorageEngine() = 0; + /** + * Set the storage engine. The engine must have been registered via registerStorageEngine. + */ + virtual void setGlobalStorageEngine(const std::string& name) = 0; /** * Shuts down storage engine cleanly and releases any locks on mongod.lock. |