mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.server_epoll: ... and include a traceback
This commit is contained in:
parent
6baa04b056
commit
0a071df2d4
1 changed files with 1 additions and 1 deletions
|
@ -124,7 +124,7 @@ local function runtimers(next_delay, min_wait)
|
|||
end
|
||||
|
||||
local _, timer, id = timers:pop();
|
||||
local ok, ret = pcall(timer, now, id);
|
||||
local ok, ret = xpcall(timer, traceback, now, id);
|
||||
if ok and type(ret) == "number" then
|
||||
local next_time = elapsed+ret;
|
||||
timers:insert(timer, next_time);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue