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:
Kim Alvefur 2021-11-18 00:39:10 +01:00
parent ce8107379d
commit d922bbb1ef

View file

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