mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
mod_component: Clearer log message when bouncing a stanza from a component that is not connected (thanks MK)
This commit is contained in:
parent
5855fda78f
commit
0390555139
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ local function handle_stanza(event)
|
|||
stanza.attr.xmlns = nil;
|
||||
send(stanza);
|
||||
else
|
||||
log("warn", "Stanza being handled by default component; bouncing error for: %s", stanza:top_tag());
|
||||
log("warn", "Component not connected, bouncing error for: %s", stanza:top_tag());
|
||||
if stanza.attr.type ~= "error" and stanza.attr.type ~= "result" then
|
||||
event.origin.send(st.error_reply(stanza, "wait", "service-unavailable", "Component unavailable"));
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue