mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
core.moduleapi: Parse period min/max arguments
Allows specifying them the same way as the default and in the config, for consistency
This commit is contained in:
parent
e6d0a3e639
commit
4891b4eea3
1 changed files with 6 additions and 0 deletions
|
@ -295,10 +295,16 @@ function api:get_option_period(name, default_value, min, max)
|
||||||
return math.huge;
|
return math.huge;
|
||||||
end
|
end
|
||||||
|
|
||||||
|
if type(min) == "string" then
|
||||||
|
min = human_io.parse_duration(min);
|
||||||
|
end
|
||||||
if min and ret < min then
|
if min and ret < min then
|
||||||
self:log("warn", "Config option '%s' out of bounds %g < %g", name, ret, min);
|
self:log("warn", "Config option '%s' out of bounds %g < %g", name, ret, min);
|
||||||
return min;
|
return min;
|
||||||
end
|
end
|
||||||
|
if type(max) == "string" then
|
||||||
|
max = human_io.parse_duration(max);
|
||||||
|
end
|
||||||
if max and ret > max then
|
if max and ret > max then
|
||||||
self:log("warn", "Config option '%s' out of bounds %g > %g", name, ret, max);
|
self:log("warn", "Config option '%s' out of bounds %g > %g", name, ret, max);
|
||||||
return max;
|
return max;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue