diff options
author | Siyuan Zhou <siyuan.zhou@mongodb.com> | 2015-03-10 14:45:55 -0400 |
---|---|---|
committer | Siyuan Zhou <siyuan.zhou@mongodb.com> | 2015-03-10 18:01:52 -0400 |
commit | 816efed843cf368841ff1ef6bb2f549e91173e5e (patch) | |
tree | 5cf00a67c682e6e95784ca7968c2f1fb955fdb54 /src/mongo/db/clientcursor.cpp | |
parent | 300a825f5e59ac7bf9e6273caba3b59b603e9431 (diff) | |
download | mongo-816efed843cf368841ff1ef6bb2f549e91173e5e.tar.gz |
SERVER-17470 Remove link to replset data in the http server
Diffstat (limited to 'src/mongo/db/clientcursor.cpp')
-rw-r--r-- | src/mongo/db/clientcursor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/clientcursor.cpp b/src/mongo/db/clientcursor.cpp index 370bbf40683..313ff7f7ed3 100644 --- a/src/mongo/db/clientcursor.cpp +++ b/src/mongo/db/clientcursor.cpp @@ -323,7 +323,7 @@ namespace mongo { // TODO: remove this for 3.0 class CmdCursorInfo : public Command { public: - CmdCursorInfo() : Command( "cursorInfo", true ) {} + CmdCursorInfo() : Command( "cursorInfo" ) {} virtual bool slaveOk() const { return true; } virtual void help( stringstream& help ) const { help << " example: { cursorInfo : 1 }, deprecated"; |