mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_limits: Don't emit error when no burst period is configured
This commit is contained in:
parent
b369dea3d8
commit
08f721a072
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ local function parse_burst(burst, sess_type)
|
|||
burst = burst:match("^(%d+) ?s$");
|
||||
end
|
||||
local n_burst = tonumber(burst);
|
||||
if not n_burst then
|
||||
if burst and not n_burst then
|
||||
module:log("error", "Unable to parse burst for %s: %q, using default burst interval (%ds)", sess_type, tostring(burst), default_burst);
|
||||
end
|
||||
return n_burst or default_burst;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue