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:
Kim Alvefur 2021-07-18 09:17:31 +02:00
parent 64a444e3a2
commit bce7688486

View file

@ -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>");