summaryrefslogtreecommitdiff
path: root/jstests/libs/csrs_upgrade_util.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/libs/csrs_upgrade_util.js')
-rw-r--r--jstests/libs/csrs_upgrade_util.js11
1 files changed, 5 insertions, 6 deletions
diff --git a/jstests/libs/csrs_upgrade_util.js b/jstests/libs/csrs_upgrade_util.js
index 8a4b3582f9f..9d4d158eca2 100644
--- a/jstests/libs/csrs_upgrade_util.js
+++ b/jstests/libs/csrs_upgrade_util.js
@@ -1,9 +1,9 @@
/**
-* This file defines a class, CSRSUpgradeCoordinator, which contains logic for spinning up a
-* sharded cluster using SCCC config servers and for upgrading that cluster to CSRS.
-* Include this file and use the CSRSUpgradeCoordinator class in any targetted jstests of csrs
-* upgrade behavior.
-*/
+ * This file defines a class, CSRSUpgradeCoordinator, which contains logic for spinning up a
+ * sharded cluster using SCCC config servers and for upgrading that cluster to CSRS.
+ * Include this file and use the CSRSUpgradeCoordinator class in any targetted jstests of csrs
+ * upgrade behavior.
+ */
load("jstests/replsets/rslib.js");
@@ -204,5 +204,4 @@ var CSRSUpgradeCoordinator = function() {
jsTest.log("Shutting down final SCCC config server now that upgrade is complete");
MongoRunner.stopMongod(st.c1);
};
-
};