0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-30 17:10:48 +01:00
mongodb/jstests/noPassthrough/ttl/ttlMonitorSleepSecs_parameter.js
Vishnu K 43ef443301 SERVER-93417 split noPassthrough into sub-directories (#26097)
GitOrigin-RevId: 6e8157f468884ab056ac34ce0e4d45abe5d9c949
2024-09-13 17:08:56 +00:00

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)
);