Skip to content

Commit 4be7923

Browse files
committed
mod_limits.c: Fixed wrong description of CheckLoadInterval
Signed-off-by: Marian Marinov <mm@yuhu.biz>
1 parent 341f12e commit 4be7923

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mod_limits.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ static command_rec limits_cmds[] = {
281281
"maximum permitted load average" ),
282282
AP_INIT_TAKE1(
283283
"CheckLoadInterval", cfg_checkavg, NULL, RSRC_CONF,
284-
"maximum simultaneous connections per user" ),
284+
"time between checks of the load average, it is useless under 5 seconds, because the kernel do not update it so often" ),
285285
#else
286286
{"LimitMaxConnsPerIP", cfg_perip, NULL, RSRC_CONF, TAKE1,
287287
"maximum simultaneous connections per IP address" },
@@ -292,7 +292,7 @@ static command_rec limits_cmds[] = {
292292
{ "LimitMaxLoadAVG", cfg_loadavg, NULL, RSRC_CONF, TAKE1,
293293
"maximum permitted load average" },
294294
{ "CheckLoadInterval", cfg_checkavg, NULL, RSRC_CONF, TAKE1,
295-
"maximum simultaneous connections per user" },
295+
"time between checks of the load average, it is useless under 5 seconds, because the kernel do not update it so often" },
296296
#endif
297297
{NULL}
298298
};

0 commit comments

Comments
 (0)