mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_s2s: Handle measurement where the local host is unknown
This could happen with Dialback-only connections or others that were missing the stream 'to' attribute.
This commit is contained in:
parent
64a444e3a2
commit
bce7688486
1 changed files with 1 additions and 1 deletions
|
@ -645,7 +645,7 @@ local function session_close(session, reason, remote_reason, bounce_reason)
|
|||
session.sends2s(stream_error);
|
||||
end
|
||||
else
|
||||
m_closed_connections:with_labels(this_host, session.direction, reason == false and ":remote-choice" or ":local-choice"):add(1)
|
||||
m_closed_connections:with_labels(this_host or ":unknown", session.direction, reason == false and ":remote-choice" or ":local-choice"):add(1)
|
||||
end
|
||||
|
||||
session.sends2s("</stream:stream>");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue