We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff296b3 commit dd6ed26Copy full SHA for dd6ed26
jstests/noPassthrough/update_yield1.js
@@ -69,8 +69,8 @@ while ( ( (new Date()).getTime() - start ) < ( time * 2 ) ){
69
70
join();
71
72
-x = db.currentOp();
+var curOp = db.currentOp();
73
// currentOp itself shows up as an active operation
74
-assert.eq( 1 , x.inprog.length , "weird 2" );
+assert.eq( 1 , curOp.inprog.length , tojson(curOp) );
75
76
testServer.stop();
0 commit comments