mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_csi_simple: Fire event when flushing due to client activity
So that the same things happen as when triggered by an outgoing stanza
This commit is contained in:
parent
ce8107379d
commit
d922bbb1ef
1 changed files with 2 additions and 0 deletions
|
@ -141,6 +141,8 @@ end
|
|||
|
||||
local function flush_buffer(data, session)
|
||||
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 });
|
||||
flush_reasons:with_labels("client activity"):add(1);
|
||||
if session.csi_measure_buffer_hold then
|
||||
session.csi_measure_buffer_hold();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue