mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
adminstream: fire disconnected event on lower layer disconnect
This may in theory cause multiple disconnect events for the adminstream client, if the only code using that wasn't calling os.exit right away. Hence, this should be a good enough partial fix for #1671. It is not a full fix, because the shell will only notice the disconnect after one has hit enter in the input; until then, it is stuck in a read() call to stdin and completely oblivious to the disconnect.
This commit is contained in:
parent
1f71208177
commit
6671cc037e
1 changed files with 1 additions and 0 deletions
|
@ -318,6 +318,7 @@ local function new_client()
|
|||
function listeners.ondisconnect(conn, err) --luacheck: ignore 212/conn
|
||||
client.log("info", "Admin client disconnected: %s", err or "connection closed");
|
||||
client.conn = nil;
|
||||
client.events.fire_event("disconnected");
|
||||
end
|
||||
|
||||
function listeners.onreadtimeout(conn)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue