mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
core.sessionmanager: Add a dummy rawsend() method to resting sessions
Should fix a traceback on attempted use after destruction, in case where opportunistic_writes was in use. Thanks Ge0rG
This commit is contained in:
parent
21fa25b27b
commit
1e3a250929
1 changed files with 1 additions and 0 deletions
|
@ -86,6 +86,7 @@ local function retire_session(session)
|
|||
end
|
||||
|
||||
function session.send(data) log("debug", "Discarding data sent to resting session: %s", data); return false; end
|
||||
function session.rawsend(data) log("debug", "Discarding data sent to resting session: %s", data); return false; end
|
||||
function session.data(data) log("debug", "Discarding data received from resting session: %s", data); end
|
||||
session.thread = { run = function (_, data) return session.data(data) end };
|
||||
return setmetatable(session, resting_session);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue