summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/storage_engine_metadata.h
diff options
context:
space:
mode:
authorDaniel Gottlieb <daniel.gottlieb@mongodb.com>2018-08-29 11:37:14 -0400
committerDaniel Gottlieb <daniel.gottlieb@mongodb.com>2018-08-29 11:37:14 -0400
commitfa5f357a688e0eb5c4d260cf86997495854104b1 (patch)
treee9ad83e1fd548079f5b1e53b4072ed4099011826 /src/mongo/db/storage/storage_engine_metadata.h
parentc89b04dd7ff298c26ffde152466113db987069f4 (diff)
downloadmongo-fa5f357a688e0eb5c4d260cf86997495854104b1.tar.gz
Revert "SERVER-13455 Add new configuration option for mongod to allow separate journal directory for WT"
This reverts commit d3656459d016d6a1be0788acfe3276734ab59210.
Diffstat (limited to 'src/mongo/db/storage/storage_engine_metadata.h')
-rw-r--r--src/mongo/db/storage/storage_engine_metadata.h12
1 files changed, 2 insertions, 10 deletions
diff --git a/src/mongo/db/storage/storage_engine_metadata.h b/src/mongo/db/storage/storage_engine_metadata.h
index 486da7ce844..a929397cf48 100644
--- a/src/mongo/db/storage/storage_engine_metadata.h
+++ b/src/mongo/db/storage/storage_engine_metadata.h
@@ -35,7 +35,6 @@
#include "mongo/base/disallow_copying.h"
#include "mongo/base/status.h"
#include "mongo/db/jsobj.h"
-#include "mongo/db/storage/storage_options.h"
namespace mongo {
@@ -105,15 +104,8 @@ public:
Status write() const;
/**
- * Validates the journalPath field only if the durability flag is set, otherwise it just returns
- * Status::OK. If it does not exist in the 'storage.bson' file, then any journalPath works,
- * otherwise the passed in path must match the one in 'storage.bson' file.
- */
- Status validateJournalPath(const StorageGlobalParams& params) const;
-
- /**
- * Validates a single field in the storage engine options. Currently, only boolean fields
- * are supported. If the 'fieldName' does not exist in the 'storage.bson' file and a
+ * Validates a single field in the storage engine options. Currently, only boolean fields are
+ * supported. If the 'fieldName' does not exist in the 'storage.bson' file and a
* 'defaultValue' is passed in, the 'expectedValue' must match the 'defaultValue'.
*/
template <typename T>