mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_csi_simple: Skip flushing of empty buffer
Just adds noise
This commit is contained in:
parent
d922bbb1ef
commit
3c57156fb9
1 changed files with 2 additions and 0 deletions
|
@ -140,6 +140,8 @@ local function manage_buffer(stanza, session)
|
|||
end
|
||||
|
||||
local function flush_buffer(data, session)
|
||||
local ctr = session.csi_counter or 0;
|
||||
if ctr == 0 then return data end
|
||||
session.log("debug", "Flushing buffer (%s; queue size is %d)", "client activity", session.csi_counter);
|
||||
session.state = "flushing";
|
||||
module:fire_event("csi-flushing", { session = session });
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue