summaryrefslogtreecommitdiff
path: root/jstests/noPassthrough/maxTransactionLockRequestTimeoutMillis_serverParameter.js
blob: fe24cb47f4d47ce37a03f897b8252479d9cbbd35 (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*/);
})();