summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoragirbal <antoine@10gen.com>2011-11-23 16:09:39 -0800
committeragirbal <antoine@10gen.com>2011-11-23 16:09:39 -0800
commitb15c813596293bab876a3144fd769ea3f0eac2e4 (patch)
treed2688ccacab80b85fa41ab3e555e8723d9e70004
parent525634baa56f6de7a45a1fe352f06b1309d08728 (diff)
downloadmongo-b15c813596293bab876a3144fd769ea3f0eac2e4.tar.gz
fix code
-rw-r--r--db/commands/mr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/commands/mr.cpp b/db/commands/mr.cpp
index 4f875da09c4..ed9c52ae8bb 100644
--- a/db/commands/mr.cpp
+++ b/db/commands/mr.cpp
@@ -406,7 +406,7 @@ namespace mongo {
BSONObj res;
BSONObj idKey = BSON( "_id" << 1 );
if ( ! _db.runCommand( "admin" , BSON( "splitVector" << _config.finalLong << "keyPattern" << idKey << "maxChunkSizeBytes" << _config.splitInfo ) , res ) ) {
- uasserted( 15919 , str::stream() << "splitVector failed: " << res );
+ uasserted( 15921 , str::stream() << "splitVector failed: " << res );
}
if ( res.hasField( "splitKeys" ) )
final.append( res.getField( "splitKeys" ) );