summaryrefslogtreecommitdiff
path: root/jstests/sharding/merge_with_drop_shard.js
diff options
context:
space:
mode:
authorEsha Maharishi <esha.maharishi@mongodb.com>2020-01-28 19:49:21 +0000
committerevergreen <evergreen@mongodb.com>2020-01-28 19:49:21 +0000
commit16a897ece7ffe8f1d2ae7216ff640fa9ef96edd0 (patch)
tree39cbc7c21ba5c8361b3c9144372df0a4ada2b41c /jstests/sharding/merge_with_drop_shard.js
parentccc13ef0b7ce0f908479522660a54dcbd142f7a1 (diff)
downloadmongo-16a897ece7ffe8f1d2ae7216ff640fa9ef96edd0.tar.gz
SERVER-45499 Remove multiversion_incompatible flag from merge_with_drop_shard.js and convert_to_and_from_sharded.js after disableWritingPendingRangeDeletionEntries failpoint removed
Diffstat (limited to 'jstests/sharding/merge_with_drop_shard.js')
-rw-r--r--jstests/sharding/merge_with_drop_shard.js6
1 files changed, 0 insertions, 6 deletions
diff --git a/jstests/sharding/merge_with_drop_shard.js b/jstests/sharding/merge_with_drop_shard.js
index fd7f947a1d3..068c050c117 100644
--- a/jstests/sharding/merge_with_drop_shard.js
+++ b/jstests/sharding/merge_with_drop_shard.js
@@ -1,6 +1,5 @@
// Tests that the $merge aggregation stage is resilient to drop shard in both the source and
// output collection during execution.
-// @tags: [multiversion_incompatible]
(function() {
'use strict';
@@ -8,11 +7,6 @@ load("jstests/aggregation/extras/merge_helpers.js"); // For withEachMergeMode.
const st = new ShardingTest({shards: 2, rs: {nodes: 1}});
-assert.commandWorked(st.shard0.adminCommand(
- {configureFailPoint: "disableWritingPendingRangeDeletionEntries", mode: "alwaysOn"}));
-assert.commandWorked(st.shard1.adminCommand(
- {configureFailPoint: "disableWritingPendingRangeDeletionEntries", mode: "alwaysOn"}));
-
const mongosDB = st.s.getDB(jsTestName());
const sourceColl = mongosDB["source"];
const targetColl = mongosDB["target"];