mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +03:00
Committing code to get nicer tracebacks for errors, also we no longer consider such errors fatal (probably a bad thing, I know...)
This commit is contained in:
parent
63808314ef
commit
8b42a2b8d8
2 changed files with 13 additions and 3 deletions
|
@ -60,7 +60,12 @@ function xmppclient.listener(conn, data)
|
||||||
-- TODO: Below function should be session,stanza - and xmlhandlers should use :method() notation to call,
|
-- TODO: Below function should be session,stanza - and xmlhandlers should use :method() notation to call,
|
||||||
-- this will avoid the useless indirection we have atm
|
-- this will avoid the useless indirection we have atm
|
||||||
-- (I'm on a mission, no time to fix now)
|
-- (I'm on a mission, no time to fix now)
|
||||||
session.stanza_dispatch = function (stanza) return core_process_stanza(session, stanza); end
|
|
||||||
|
-- Debug version --
|
||||||
|
local function handleerr() print("Traceback:", debug.traceback()); end
|
||||||
|
session.stanza_dispatch = function (stanza) return select(2, xpcall(function () return core_process_stanza(session, stanza); end, handleerr)); end
|
||||||
|
|
||||||
|
-- session.stanza_dispatch = function (stanza) return core_process_stanza(session, stanza); end
|
||||||
|
|
||||||
end
|
end
|
||||||
if data then
|
if data then
|
||||||
|
|
|
@ -62,7 +62,12 @@ function xmppserver.listener(conn, data)
|
||||||
-- FIXME: Below function should be session,stanza - and xmlhandlers should use :method() notation to call,
|
-- FIXME: Below function should be session,stanza - and xmlhandlers should use :method() notation to call,
|
||||||
-- this will avoid the useless indirection we have atm
|
-- this will avoid the useless indirection we have atm
|
||||||
-- (I'm on a mission, no time to fix now)
|
-- (I'm on a mission, no time to fix now)
|
||||||
session.stanza_dispatch = function (stanza) return core_process_stanza(session, stanza); end
|
|
||||||
|
-- Debug version --
|
||||||
|
local function handleerr() print("Traceback:", debug.traceback()); end
|
||||||
|
session.stanza_dispatch = function (stanza) return select(2, xpcall(function () return core_process_stanza(session, stanza); end, handleerr)); end
|
||||||
|
|
||||||
|
-- session.stanza_dispatch = function (stanza) return core_process_stanza(session, stanza); end
|
||||||
|
|
||||||
end
|
end
|
||||||
if data then
|
if data then
|
||||||
|
@ -100,4 +105,4 @@ connlisteners_register("xmppserver", xmppserver);
|
||||||
-- We also need to perform that same initialisation at other points (SASL, TLS, ...)
|
-- We also need to perform that same initialisation at other points (SASL, TLS, ...)
|
||||||
|
|
||||||
-- ...and we need to handle data
|
-- ...and we need to handle data
|
||||||
-- ...and record all sessions associated with connections
|
-- ...and record all sessions associated with connections
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue