mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.promise: Switch from pcall to xpcall to get tracebacks on exceptions
This commit is contained in:
parent
8ea77fc0ec
commit
6990069677
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ local function wrap_handler(f, resolve, reject, default)
|
|||
return default;
|
||||
end
|
||||
return function (param)
|
||||
local ok, ret = pcall(f, param);
|
||||
local ok, ret = xpcall(f, debug.traceback, param);
|
||||
if ok then
|
||||
resolve(ret);
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue