0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00

try to make replacepeer2 more reliable

This commit is contained in:
Eliot Horowitz 2010-08-23 15:04:00 -04:00
parent 32a30aa221
commit 94c729f866

View File

@ -44,15 +44,8 @@ doTest = function( signal ) {
checkWrite( rp.master(), rp.slave() );
// allow slave to finish initial sync
assert.soon(
function() {
var res = rp.slave().getDB( "admin" ).runCommand( {replacepeer:1} );
if ( res.ok == 1 )
return true;
printjson( res );
return false;
}
);
var res = rp.slave().getDB( "admin" ).runCommand( {replacepeer:1} );
assert( res.ok , "replacepeer didn't finish: " + tojson( res ) );
// Should not be saved to slave.
writeOne( rp.master() );