diff options
author | Max Hirschhorn <max.hirschhorn@mongodb.com> | 2015-05-22 09:04:55 -0400 |
---|---|---|
committer | Max Hirschhorn <max.hirschhorn@mongodb.com> | 2015-05-22 09:04:55 -0400 |
commit | 841c50f3e7a8da9831a5e8c7c9ad9a22b12a17de (patch) | |
tree | 65e57c14746cf79d0421507a0c51d6af45e24e65 /src/mongo/db/service_context.h | |
parent | 38862aaa17e06e5e6733598bbb487774cb3616f7 (diff) | |
download | mongo-841c50f3e7a8da9831a5e8c7c9ad9a22b12a17de.tar.gz |
Revert "SERVER-17861 Change the default storage engine to wiredTiger."
This reverts commit 38862aaa17e06e5e6733598bbb487774cb3616f7.
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. |