diff options
author | Misha Tyulenev <misha@mongodb.com> | 2016-04-21 18:17:53 -0400 |
---|---|---|
committer | Misha Tyulenev <misha@mongodb.com> | 2016-04-21 21:18:21 -0400 |
commit | cb6298ef61165e06474995b1a22eb18850246271 (patch) | |
tree | d40af36116bf04c159b16dc255a8dd0e3abc06ef /jstests/replsets/config_server_checks.js | |
parent | 9d120df9c8a8ecc6a530cc08b3c0e34a9ca4dc75 (diff) | |
download | mongo-cb6298ef61165e06474995b1a22eb18850246271.tar.gz |
SERVER-23268 remove CatalogManager::ConfigServerMode::SCCC
Diffstat (limited to 'jstests/replsets/config_server_checks.js')
-rw-r--r-- | jstests/replsets/config_server_checks.js | 22 |
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. |