summaryrefslogtreecommitdiff
path: root/jstests/replsets
diff options
context:
space:
mode:
authorMisha Tyulenev <misha@mongodb.com>2016-04-21 18:17:53 -0400
committerMisha Tyulenev <misha@mongodb.com>2016-04-21 21:18:21 -0400
commitcb6298ef61165e06474995b1a22eb18850246271 (patch)
treed40af36116bf04c159b16dc255a8dd0e3abc06ef /jstests/replsets
parent9d120df9c8a8ecc6a530cc08b3c0e34a9ca4dc75 (diff)
downloadmongo-cb6298ef61165e06474995b1a22eb18850246271.tar.gz
SERVER-23268 remove CatalogManager::ConfigServerMode::SCCC
Diffstat (limited to 'jstests/replsets')
-rw-r--r--jstests/replsets/config_server_checks.js22
1 files changed, 0 insertions, 22 deletions
diff --git a/jstests/replsets/config_server_checks.js b/jstests/replsets/config_server_checks.js
index c88ccf6815b..8fb6b813667 100644
--- a/jstests/replsets/config_server_checks.js
+++ b/jstests/replsets/config_server_checks.js
@@ -42,28 +42,6 @@ function expectState(rst, state) {
})();
(function() {
- // Test that node with --configsvr cmd line and configsvr in replset config does NOT go
- // into REMOVED state if storage engine is not WiredTiger but we're running in SCCC mode
- jsTestLog(
- "configsvr in rs config and --configsvr cmd line, but mmapv1 with configSvrMode=sccc");
- var rst = new ReplSetTest({
- name: "configrs4",
- nodes: 1,
- nodeOptions:
- {configsvr: "", journal: "", storageEngine: "mmapv1", configsvrMode: "sccc"}
- });
-
- rst.startSet();
- var conf = rst.getReplSetConfig();
- conf.configsvr = true;
- assert.commandWorked(rst.nodes[0].adminCommand({replSetInitiate: conf}));
-
- rst.getPrimary();
- expectState(rst, ReplSetTest.State.PRIMARY);
- rst.stopSet();
- })();
-
- (function() {
// Test that node with --configsvr cmd line and configsvr in replset config and using
// wiredTiger
// does NOT go into REMOVED state.