mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_csi_simple: Fix flushing when client sent something
Forgot to unset the flag afterwards, so it would only work once. The flag is not even needed, it works as intended without it.
This commit is contained in:
parent
749ed917c1
commit
cabd89913a
1 changed files with 0 additions and 5 deletions
|
@ -116,10 +116,6 @@ local function manage_buffer(stanza, session)
|
|||
end
|
||||
|
||||
local function flush_buffer(data, session)
|
||||
if session.csi_flushing then
|
||||
return data;
|
||||
end
|
||||
session.csi_flushing = true;
|
||||
session.log("debug", "Client sent something, flushing buffer once (queue size is %d)", session.csi_counter);
|
||||
session.conn:resume_writes();
|
||||
return data;
|
||||
|
@ -136,7 +132,6 @@ function enable_optimizations(session)
|
|||
end
|
||||
|
||||
function disable_optimizations(session)
|
||||
session.csi_flushing = nil;
|
||||
filters.remove_filter(session, "stanzas/out", manage_buffer);
|
||||
filters.remove_filter(session, "bytes/in", flush_buffer);
|
||||
if session.conn and session.conn.resume_writes then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue