summaryrefslogtreecommitdiff
path: root/jstests/noPassthrough/transactionLifetimeLimitSeconds_serverParameter.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/noPassthrough/transactionLifetimeLimitSeconds_serverParameter.js')
-rw-r--r--jstests/noPassthrough/transactionLifetimeLimitSeconds_serverParameter.js26
1 files changed, 13 insertions, 13 deletions
diff --git a/jstests/noPassthrough/transactionLifetimeLimitSeconds_serverParameter.js b/jstests/noPassthrough/transactionLifetimeLimitSeconds_serverParameter.js
index 6477fc8a4ca..82dba9f08be 100644
--- a/jstests/noPassthrough/transactionLifetimeLimitSeconds_serverParameter.js
+++ b/jstests/noPassthrough/transactionLifetimeLimitSeconds_serverParameter.js
@@ -2,20 +2,20 @@
// startup and via setParameter command. Valid parameter values are in the range [1, infinity).
(function() {
- 'use strict';
+'use strict';
- load("jstests/noPassthrough/libs/server_parameter_helpers.js");
+load("jstests/noPassthrough/libs/server_parameter_helpers.js");
- // transactionLifetimeLimitSeconds is set to be higher than its default value in test suites.
- delete TestData.transactionLifetimeLimitSeconds;
+// transactionLifetimeLimitSeconds is set to be higher than its default value in test suites.
+delete TestData.transactionLifetimeLimitSeconds;
- testNumericServerParameter("transactionLifetimeLimitSeconds",
- true /*isStartupParameter*/,
- true /*isRuntimeParameter*/,
- 60 /*defaultValue*/,
- 30 /*nonDefaultValidValue*/,
- true /*hasLowerBound*/,
- 0 /*lowerOutOfBounds*/,
- false /*hasUpperBound*/,
- "unused" /*upperOutOfBounds*/);
+testNumericServerParameter("transactionLifetimeLimitSeconds",
+ true /*isStartupParameter*/,
+ true /*isRuntimeParameter*/,
+ 60 /*defaultValue*/,
+ 30 /*nonDefaultValidValue*/,
+ true /*hasLowerBound*/,
+ 0 /*lowerOutOfBounds*/,
+ false /*hasUpperBound*/,
+ "unused" /*upperOutOfBounds*/);
})();