File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1571,7 +1571,7 @@ namespace mongo {
15711571 log () << " migrate commit succeeded flushing to secondaries for '" << ns << " ' " << min << " -> " << max << migrateLog;
15721572
15731573 {
1574- readlock lk (ns); // commitNow() currently requires it
1574+ Lock::GlobalRead lk;
15751575
15761576 // if durability is on, force a write to journal
15771577 if ( getDur ().commitNow () ) {
Original file line number Diff line number Diff line change @@ -179,7 +179,7 @@ namespace mongo {
179179 assertionCount.condrollover ( ++assertionCount.warning );
180180 tlog () << " Assertion: " << msgid << " :" << msg << endl;
181181 raiseError (msgid,msg && *msg ? msg : " massert failure" );
182- breakpoint ();
182+ // breakpoint();
183183 printStackTrace ();
184184 throw MsgAssertionException (msgid, msg);
185185 }
You can’t perform that action at this time.
0 commit comments