aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--net/server_epoll.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/server_epoll.lua b/net/server_epoll.lua
index 64f79921..f102f806 100644
--- a/net/server_epoll.lua
+++ b/net/server_epoll.lua
@@ -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);