summaryrefslogtreecommitdiff
path: root/jstests/httpinterface/sharding_configdb_on_default_ports.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/httpinterface/sharding_configdb_on_default_ports.js')
-rw-r--r--jstests/httpinterface/sharding_configdb_on_default_ports.js10
1 files changed, 3 insertions, 7 deletions
diff --git a/jstests/httpinterface/sharding_configdb_on_default_ports.js b/jstests/httpinterface/sharding_configdb_on_default_ports.js
index 4472a7a515b..4ea1c461304 100644
--- a/jstests/httpinterface/sharding_configdb_on_default_ports.js
+++ b/jstests/httpinterface/sharding_configdb_on_default_ports.js
@@ -19,15 +19,11 @@
// The config servers must support readConcern: majority to be run as a replica set, so
// explicitly set storage engine to wiredTiger.
- c1 = MongoRunner.runMongod({
- configsvr: "",
- port: 27019,
- replSet: "csrs",
- storageEngine: "wiredTiger"
- });
+ c1 = MongoRunner.runMongod(
+ {configsvr: "", port: 27019, replSet: "csrs", storageEngine: "wiredTiger"});
assert.commandWorked(c1.adminCommand("replSetInitiate"));
c2 = MongoRunner.runMongod({configsvr: "", storageEngine: "wiredTiger"});
c3 = MongoRunner.runMongod({configsvr: "", storageEngine: "wiredTiger"});
- assert(MongoRunner.runMongos({configdb: "csrs/" + getHostPart(c1.host) }));
+ assert(MongoRunner.runMongos({configdb: "csrs/" + getHostPart(c1.host)}));
}());