mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +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
6d5ef2f7f9
commit
ba19cdbf9a
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