mod_csi_simple: Only act in inactive mode to prevent infinite recursion

Definitely should not be firing an event that triggers like csi-flushing
from which it may make sense to send things, which leads right back here
This commit is contained in:
Kim Alvefur 2021-11-16 13:53:30 +01:00
parent 49e86e78c5
commit 62c74a6ad3

View file

@ -116,6 +116,10 @@ local flush_reasons = module:metric(
local function manage_buffer(stanza, session)
local ctr = session.csi_counter or 0;
if session.state ~= "inactive" then
session.csi_counter = ctr + 1;
return stanza;
end
local flush, why = should_flush(stanza, session, ctr);
if flush then
if session.csi_measure_buffer_hold then