summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVesselina Ratcheva <vesselina.ratcheva@10gen.com>2018-02-21 13:05:28 -0500
committerVesselina Ratcheva <vesselina.ratcheva@10gen.com>2018-02-21 13:06:23 -0500
commitf15200621c45cf27bc348eaa1e0573372fc6ff93 (patch)
tree8ffabd3e63bcf2c1d9cd7ba8b04cf5136464d898
parente126c24bdc87b79fb98905625c8c1c5b424679e6 (diff)
downloadmongo-f15200621c45cf27bc348eaa1e0573372fc6ff93.tar.gz
SERVER-32143 fix merge
-rw-r--r--jstests/noPassthrough/unsupported_change_stream_deployments.js7
1 files changed, 0 insertions, 7 deletions
diff --git a/jstests/noPassthrough/unsupported_change_stream_deployments.js b/jstests/noPassthrough/unsupported_change_stream_deployments.js
index 023b124a1b0..ab739ba064e 100644
--- a/jstests/noPassthrough/unsupported_change_stream_deployments.js
+++ b/jstests/noPassthrough/unsupported_change_stream_deployments.js
@@ -27,13 +27,6 @@
assertChangeStreamNotSupportedOnConnection(conn);
assert.eq(0, MongoRunner.stopMongod(conn));
- // Test master/slave deployments.
- const masterSlaveFixture = new ReplTest("change_stream");
- const master = masterSlaveFixture.start(true, {enableMajorityReadConcern: ""});
- assert.writeOK(master.getDB("test").ensure_db_exists.insert({}));
- assertChangeStreamNotSupportedOnConnection(master);
- masterSlaveFixture.stop();
-
// Test a sharded cluster with standalone shards.
const clusterWithStandalones = new ShardingTest(
{shards: 2, other: {shardOptions: {enableMajorityReadConcern: ""}}, config: 1});