summaryrefslogtreecommitdiff
path: root/s/d_split.cpp
diff options
context:
space:
mode:
authorAlberto Lerner <alerner@10gen.com>2010-10-27 17:13:47 -0400
committerAlberto Lerner <alerner@10gen.com>2010-10-27 17:13:47 -0400
commit910044f28a4c3c2a896fc7bd35e08c4f8c75063b (patch)
tree6bc5e6714d90c969d7f0b5e5618bedcc2cea07cf /s/d_split.cpp
parent8a50d05676e65343e4cb2cb43d1fdc3d5aee7751 (diff)
downloadmongo-910044f28a4c3c2a896fc7bd35e08c4f8c75063b.tar.gz
splits are now done by the mongod side
Diffstat (limited to 's/d_split.cpp')
-rw-r--r--s/d_split.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/s/d_split.cpp b/s/d_split.cpp
index cafe1c7c8d7..ae8fe732250 100644
--- a/s/d_split.cpp
+++ b/s/d_split.cpp
@@ -372,10 +372,10 @@ namespace mongo {
class SplitChunkCommand : public Command {
public:
- SplitChunkCommand() : Command( "splitChunk_ForDevOnly" ){}
+ SplitChunkCommand() : Command( "splitChunk" ){}
virtual void help( stringstream& help ) const {
help <<
- "internal command ** under development ** \n"
+ "internal command usage only\n"
"example:\n"
" { splitChunk:\"db.foo\" , keyPattern: {a:1} , min : {a:100} , max: {a:200} { splitKeys : [ {a:150} , ... ]}";
}