blob: 00428d7abe2848f0351ea6654efd2cf8abbe82e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Tests the maxTransactionLockRequestTimeoutMillis server parameter.
(function() {
'use strict';
load("jstests/noPassthrough/libs/server_parameter_helpers.js");
// Valid parameter values are in the range (-infinity, infinity).
testNumericServerParameter("maxTransactionLockRequestTimeoutMillis",
true /*isStartupParameter*/,
true /*isRuntimeParameter*/,
5 /*defaultValue*/,
30 /*nonDefaultValidValue*/,
false /*hasLowerBound*/,
"unused" /*lowerOutOfBounds*/,
false /*hasUpperBound*/,
"unused" /*upperOutOfBounds*/);
})();
|