mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_saslauth: Don't throw errors in async code when connections are gone
Fixes #1515
This commit is contained in:
parent
2b0c472f87
commit
a7cc31c6bb
1 changed files with 1 additions and 0 deletions
|
@ -44,6 +44,7 @@ local function build_reply(status, ret, err_msg)
|
|||
end
|
||||
|
||||
local function handle_status(session, status, ret, err_msg)
|
||||
if session["sasl_handler"] == nil then return "failure", "connection-timeout", "Connection gone"; end
|
||||
if status == "failure" then
|
||||
module:fire_event("authentication-failure", { session = session, condition = ret, text = err_msg });
|
||||
session.sasl_handler = session.sasl_handler:clean_clone();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue