mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_csi_simple: Include queue size in debug messages
This commit is contained in:
parent
5074566d79
commit
096ebc3bcf
1 changed files with 5 additions and 5 deletions
|
@ -62,10 +62,10 @@ end
|
||||||
local function manage_buffer(stanza, session)
|
local function manage_buffer(stanza, session)
|
||||||
local ctr = session.csi_counter or 0;
|
local ctr = session.csi_counter or 0;
|
||||||
if ctr >= queue_size then
|
if ctr >= queue_size then
|
||||||
session.log("debug", "Queue size limit hit, flushing buffer");
|
session.log("debug", "Queue size limit hit, flushing buffer (queue size is %d)", session.csi_counter);
|
||||||
session.conn:resume_writes();
|
session.conn:resume_writes();
|
||||||
elseif module:fire_event("csi-is-stanza-important", { stanza = stanza, session = session }) then
|
elseif module:fire_event("csi-is-stanza-important", { stanza = stanza, session = session }) then
|
||||||
session.log("debug", "Important stanza, flushing buffer");
|
session.log("debug", "Important stanza, flushing buffer (queue size is %d)", session.csi_counter);
|
||||||
session.conn:resume_writes();
|
session.conn:resume_writes();
|
||||||
else
|
else
|
||||||
stanza = with_timestamp(stanza, jid.join(session.username, session.host))
|
stanza = with_timestamp(stanza, jid.join(session.username, session.host))
|
||||||
|
@ -75,7 +75,7 @@ local function manage_buffer(stanza, session)
|
||||||
end
|
end
|
||||||
|
|
||||||
local function flush_buffer(data, session)
|
local function flush_buffer(data, session)
|
||||||
session.log("debug", "Client sent something, flushing buffer once");
|
session.log("debug", "Client sent something, flushing buffer once (queue size is %d)", session.csi_counter);
|
||||||
session.conn:resume_writes();
|
session.conn:resume_writes();
|
||||||
return data;
|
return data;
|
||||||
end
|
end
|
||||||
|
@ -112,9 +112,9 @@ end);
|
||||||
module:hook("c2s-ondrain", function (event)
|
module:hook("c2s-ondrain", function (event)
|
||||||
local session = event.session;
|
local session = event.session;
|
||||||
if session.state == "inactive" and session.conn and session.conn and session.conn.pause_writes then
|
if session.state == "inactive" and session.conn and session.conn and session.conn.pause_writes then
|
||||||
session.csi_counter = 0;
|
|
||||||
session.conn:pause_writes();
|
session.conn:pause_writes();
|
||||||
session.log("debug", "Buffer flushed, resuming inactive mode");
|
session.log("debug", "Buffer flushed, resuming inactive mode (queue size was %d)", session.csi_counter);
|
||||||
|
session.csi_counter = 0;
|
||||||
end
|
end
|
||||||
end);
|
end);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue