mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_csi_simple: Skip initiating flush in all but inactive state
Both in the flushing and active states the right thing to do is skip directly to returning the data. Also in any unknown state, like if the filter is somehow left behind on module unload.
This commit is contained in:
parent
349968eb67
commit
8a949f83e2
1 changed files with 1 additions and 1 deletions
|
@ -143,7 +143,7 @@ end
|
||||||
|
|
||||||
local function flush_buffer(data, session)
|
local function flush_buffer(data, session)
|
||||||
local ctr = session.csi_counter or 0;
|
local ctr = session.csi_counter or 0;
|
||||||
if ctr == 0 or session.state == "flushing" then return data end
|
if ctr == 0 or session.state ~= "inactive" then return data end
|
||||||
session.log("debug", "Flushing buffer (%s; queue size is %d)", "client activity", session.csi_counter);
|
session.log("debug", "Flushing buffer (%s; queue size is %d)", "client activity", session.csi_counter);
|
||||||
session.state = "flushing";
|
session.state = "flushing";
|
||||||
module:fire_event("csi-flushing", { session = session });
|
module:fire_event("csi-flushing", { session = session });
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue