mod_limits: Don't emit error when no burst period is configured

This commit is contained in:
Matthew Wild 2021-05-11 14:10:26 +01:00
parent b369dea3d8
commit 08f721a072

View file

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