Skip to content

Commit e71ca21

Browse files
committed
SERVER-10341 disable sync_passive2.js test for 2.5.2 release
We identified a performance regression that prevents this test from finishing on the Win32 builder and probably any single-core host. We should reenable the test after the performance regression is addressed.
1 parent 0e5d980 commit e71ca21

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

jstests/replsets/sync_passive2.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@
44

55
load("jstests/replsets/rslib.js");
66

7+
if (false) { // Test disabled until SERVER-10341 is resolved
8+
79
var name = "sync_passive2";
810
var host = getHostName();
9-
11+
1012
var replTest = new ReplSetTest( {name: name, nodes: 5} );
1113
var nodes = replTest.startSet();
1214

@@ -217,3 +219,5 @@ assert.soon(function() {
217219
}, 'failed to change sync target', 60000);
218220

219221
replTest.stopSet();
222+
223+
} // end test disabled

0 commit comments

Comments
 (0)