summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEliot Horowitz <eliot@10gen.com>2011-03-11 11:52:41 -0500
committerEliot Horowitz <eliot@10gen.com>2011-03-11 16:55:02 -0500
commit2409249072798c936c6a1e5a9ca3d603d0114de7 (patch)
treea053e821e3a6c830596b333f94ca885f031a1f7e
parentd83d060854bdcc966461d6d08a97889f5c07d511 (diff)
downloadmongo-2409249072798c936c6a1e5a9ca3d603d0114de7.tar.gz
make some options hidden
-rw-r--r--db/db.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/db/db.cpp b/db/db.cpp
index 07c4733a6d5..8d59115e0ba 100644
--- a/db/db.cpp
+++ b/db/db.cpp
@@ -641,8 +641,6 @@ int main(int argc, char* argv[]) {
("jsonp","allow JSONP access via http (has security implications)")
("maxConns",po::value<int>(), "max number of simultaneous connections")
("noauth", "run without security")
- ("nocursors", "diagnostic/debugging option")
- ("nohints", "ignore query hints")
("nohttpinterface", "disable http interface")
("noprealloc", "disable data file preallocation - will often hurt performance")
("noscripting", "disable scripting engine")
@@ -703,6 +701,8 @@ int main(int argc, char* argv[]) {
("arbiter", po::value<string>(), "address of replica pair arbiter server DEPRECATED")
("nodur", "disable journaling (currently the default)")
("appsrvpath", po::value<string>(), "root directory for the babble app server")
+ ("nocursors", "diagnostic/debugging option that turns off cursors DO NOT USE IN PRODUCTION")
+ ("nohints", "ignore query hints")
;