mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-30 17:10:48 +01:00
43ef443301
GitOrigin-RevId: 6e8157f468884ab056ac34ce0e4d45abe5d9c949
15 lines
521 B
JavaScript
15 lines
521 B
JavaScript
// Tests the ttlMonitorSleepSecs parameter
|
|
|
|
import {testNumericServerParameter} from "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)
|
|
); |