summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Milkie <milkie@10gen.com>2013-01-25 11:52:45 -0500
committerEric Milkie <milkie@10gen.com>2013-01-25 11:52:59 -0500
commit7a8fdfc75c26efc9aa4b3849587ef0995ffd9a36 (patch)
treeb5b224f40c620b56961fe1530db2edc6e04bcf01
parent51bc29ad9a22e51f68d888d634979fcb58ddbd31 (diff)
downloadmongo-7a8fdfc75c26efc9aa4b3849587ef0995ffd9a36.tar.gz
SERVER-2771 --noIndexBuildRetry does not take a param
-rw-r--r--src/mongo/db/db.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mongo/db/db.cpp b/src/mongo/db/db.cpp
index 0a64440fa5c..67eb1a1d053 100644
--- a/src/mongo/db/db.cpp
+++ b/src/mongo/db/db.cpp
@@ -779,8 +779,7 @@ static void buildOptionsDescriptions(po::options_description *pVisible,
("jsonp","allow JSONP access via http (has security implications)")
("noauth", "run without security")
("nohttpinterface", "disable http interface")
- ("noIndexBuildRetry", po::value<int>(),
- "don't retry any index builds that were interrupted by shutdown")
+ ("noIndexBuildRetry", "don't retry any index builds that were interrupted by shutdown")
("nojournal", "disable journaling (journaling is on by default for 64 bit)")
("noprealloc", "disable data file preallocation - will often hurt performance")
("noscripting", "disable scripting engine")