blob: 7d5c3ea00d2a35c69d927167dc7fd6033aafb01f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Tests the ttlMonitorSleepSecs parameter
(function() {
'use strict';
load('jstests/noPassthrough/libs/server_parameter_helpers.js');
testNumericServerParameter(
'ttlMonitorSleepSecs',
true, // is Startup Param
false, // is runtime param
60, // default value
30, // valid, non-default value
true, // has lower bound
0, // out of bound value (below lower bound)
false, // has upper bound
'unused' // out of bounds value (above upper bound)
);
})();
|