mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
mod_s2s: Really fix logging of outgoing stanza queue counts
Some confusion happened in 42b98ee73ca8, possibly because .count() returns the items?
This commit is contained in:
parent
e097713883
commit
cc34f41086
1 changed files with 2 additions and 2 deletions
|
@ -135,7 +135,7 @@ local bouncy_stanzas = { message = true, presence = true, iq = true };
|
|||
local function bounce_sendq(session, reason)
|
||||
local sendq = session.sendq;
|
||||
if not sendq then return; end
|
||||
session.log("info", "Sending error replies for %d queued stanzas because of failed outgoing connection to %s", sendq.items(), session.to_host);
|
||||
session.log("info", "Sending error replies for %d queued stanzas because of failed outgoing connection to %s", sendq.count(), session.to_host);
|
||||
local dummy = {
|
||||
type = "s2sin";
|
||||
send = function ()
|
||||
|
@ -366,7 +366,7 @@ function mark_connected(session)
|
|||
|
||||
if session.direction == "outgoing" then
|
||||
if sendq then
|
||||
session.log("debug", "sending %d queued stanzas across new outgoing connection to %s", sendq.items(), session.to_host);
|
||||
session.log("debug", "sending %d queued stanzas across new outgoing connection to %s", sendq.count(), session.to_host);
|
||||
local send = session.sends2s;
|
||||
for stanza in sendq:consume() do
|
||||
-- TODO check send success
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue