summaryrefslogtreecommitdiff
path: root/jstests/replsets/read_committed_no_snapshots.js
diff options
context:
space:
mode:
authorScott Hernandez <scotthernandez@gmail.com>2016-08-18 09:10:39 -0400
committerScott Hernandez <scotthernandez@gmail.com>2016-08-18 12:49:57 -0400
commitf5821cbc18c7270a63634bb4080375d165464939 (patch)
tree3ad1ecf14c8f200cdc30a99010a01ae9f90e6df9 /jstests/replsets/read_committed_no_snapshots.js
parent74682194962bf695d03a8f7e120d998136c0c1f9 (diff)
downloadmongo-f5821cbc18c7270a63634bb4080375d165464939.tar.gz
SERVER-23476: re-enable resync tests
Diffstat (limited to 'jstests/replsets/read_committed_no_snapshots.js')
-rw-r--r--jstests/replsets/read_committed_no_snapshots.js8
1 files changed, 2 insertions, 6 deletions
diff --git a/jstests/replsets/read_committed_no_snapshots.js b/jstests/replsets/read_committed_no_snapshots.js
index cb187f3b4e5..ee7f329bdae 100644
--- a/jstests/replsets/read_committed_no_snapshots.js
+++ b/jstests/replsets/read_committed_no_snapshots.js
@@ -7,13 +7,9 @@
load("jstests/replsets/rslib.js"); // For reconfig and startSetIfSupportsReadMajority.
-(function(doNotRun) {
+(function() {
"use strict";
- if (doNotRun) {
- return;
- }
-
// Set up a set and grab things for later.
var name = "read_committed_no_snapshots";
var replTest =
@@ -84,4 +80,4 @@ load("jstests/replsets/rslib.js"); // For reconfig and startSetIfSupportsReadMa
// Ensure maxTimeMS times out while waiting for this snapshot
assert.commandFailed(primary.getSiblingDB(name).foo.runCommand(
'find', {"readConcern": {"level": "majority"}, "maxTimeMS": 1000}));
-})(true /* Disabled until SERVER-23476 re-enabled rsync command */);
+})();