diff options
author | Mark Benvenuto <mark.benvenuto@mongodb.com> | 2019-03-11 13:39:27 -0400 |
---|---|---|
committer | Mark Benvenuto <mark.benvenuto@mongodb.com> | 2019-03-11 13:39:27 -0400 |
commit | 20c7b24f8cb947c90a905347c3debcd337a48036 (patch) | |
tree | 8d5609a6a2ebd62505c6fe3a9dbcdd00a838cf25 /src/mongo/db/mongod_options.cpp | |
parent | 2c0bebbfe5d458f5bef25ab28c12227402caa6cb (diff) | |
download | mongo-20c7b24f8cb947c90a905347c3debcd337a48036.tar.gz |
SERVER-39132 Separate out options that are not related to mongocryptd
Diffstat (limited to 'src/mongo/db/mongod_options.cpp')
-rw-r--r-- | src/mongo/db/mongod_options.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mongo/db/mongod_options.cpp b/src/mongo/db/mongod_options.cpp index 8a174df4c9b..2312596120a 100644 --- a/src/mongo/db/mongod_options.cpp +++ b/src/mongo/db/mongod_options.cpp @@ -49,6 +49,7 @@ #include "mongo/db/repl/repl_settings.h" #include "mongo/db/server_options.h" #include "mongo/db/server_options_base.h" +#include "mongo/db/server_options_nongeneral_gen.h" #include "mongo/db/server_options_server_helpers.h" #include "mongo/util/log.h" #include "mongo/util/mongoutils/str.h" @@ -78,6 +79,7 @@ std::string storageDBPathDescription() { Status addMongodOptions(moe::OptionSection* options) try { uassertStatusOK(addGeneralServerOptions(options)); + uassertStatusOK(addNonGeneralServerOptions(options)); uassertStatusOK(addMongodGeneralOptions(options)); uassertStatusOK(addMongodReplicationOptions(options)); uassertStatusOK(addMongodShardingOptions(options)); |