mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
sessionmanager, s2smanager: Add type of ?2s_destroyed to resting sessions (fixes a logging traceback, thanks Flo)
This commit is contained in:
parent
c3a993d0ad
commit
6fc597e709
2 changed files with 2 additions and 0 deletions
|
@ -506,6 +506,7 @@ end
|
||||||
|
|
||||||
local resting_session = { -- Resting, not dead
|
local resting_session = { -- Resting, not dead
|
||||||
destroyed = true;
|
destroyed = true;
|
||||||
|
type = "s2s_destroyed";
|
||||||
open_stream = function (session)
|
open_stream = function (session)
|
||||||
session.log("debug", "Attempt to open stream on resting session");
|
session.log("debug", "Attempt to open stream on resting session");
|
||||||
end;
|
end;
|
||||||
|
|
|
@ -68,6 +68,7 @@ end
|
||||||
|
|
||||||
local resting_session = { -- Resting, not dead
|
local resting_session = { -- Resting, not dead
|
||||||
destroyed = true;
|
destroyed = true;
|
||||||
|
type = "c2s_destroyed";
|
||||||
close = function (session)
|
close = function (session)
|
||||||
session.log("debug", "Attempt to close already-closed session");
|
session.log("debug", "Attempt to close already-closed session");
|
||||||
end;
|
end;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue