mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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:
parent
49e86e78c5
commit
62c74a6ad3
1 changed files with 4 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue