Skip to content

Commit

Permalink
disambiguate
Browse files Browse the repository at this point in the history
  • Loading branch information
Alberto Lerner committed Dec 2, 2010
1 parent 28b1cff commit c8fd4df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion s/chunk.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -635,7 +635,7 @@ namespace mongo {
stringstream ss;
ss << "saving first chunk failed. cmd: " << chunkCmd << " result: " << errmsg;
log( LL_ERROR ) << ss.str() << endl;
msgasserted( 13327 , ss.str() );
msgasserted( 13592 , ss.str() ); // assert(13592)
}

conn.done();
Expand Down
2 changes: 1 addition & 1 deletion s/d_split.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ namespace mongo {
stringstream ss;
ss << "saving chunks failed. cmd: " << cmd << " result: " << cmdResult;
error() << ss.str() << endl;
msgasserted( 13327 , ss.str() );
msgasserted( 13593 , ss.str() ); // assert(13593)
}

//
Expand Down

0 comments on commit c8fd4df

Please sign in to comment.