summaryrefslogtreecommitdiff
path: root/src/mongo/db/mongod_options.cpp
diff options
context:
space:
mode:
authorDaniel Gottlieb <daniel.gottlieb@mongodb.com>2017-07-11 14:27:11 -0400
committerDaniel Gottlieb <daniel.gottlieb@mongodb.com>2017-07-11 14:28:06 -0400
commit3ddc0d1381699fbd71d1be77418130b17dab8dda (patch)
tree4845bbfae6968a5f0166b84238ac2b7576eff49c /src/mongo/db/mongod_options.cpp
parentf7f3946600e6a5c6612ba6763ca91d93b5a023f7 (diff)
downloadmongo-3ddc0d1381699fbd71d1be77418130b17dab8dda.tar.gz
SERVER-29927: Hide --groupCollections startup flag
Diffstat (limited to 'src/mongo/db/mongod_options.cpp')
-rw-r--r--src/mongo/db/mongod_options.cpp12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/mongo/db/mongod_options.cpp b/src/mongo/db/mongod_options.cpp
index 9a38888635d..cb801830e55 100644
--- a/src/mongo/db/mongod_options.cpp
+++ b/src/mongo/db/mongod_options.cpp
@@ -201,11 +201,13 @@ Status addMongodOptions(moe::OptionSection* options) {
.setSources(moe::SourceAll)
.hidden();
- storage_options.addOptionChaining("storage.groupCollections",
- "groupCollections",
- moe::Switch,
- "group collections - if true the storage engine may group "
- "collections within a database into a shared record store.");
+ storage_options
+ .addOptionChaining("storage.groupCollections",
+ "groupCollections",
+ moe::Switch,
+ "group collections - if true the storage engine may group "
+ "collections within a database into a shared record store.")
+ .hidden();
general_options
.addOptionChaining("noIndexBuildRetry",