mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.server_epoll: Allow setting a custom error handler for listener
This lets plugins handle errors in some custom way, should they wish to.
This commit is contained in:
parent
0a071df2d4
commit
7acd39cdbe
1 changed files with 2 additions and 1 deletions
|
@ -192,7 +192,8 @@ function interface:on(what, ...)
|
|||
self:noise("Missing listener 'on%s'", what); -- uncomment for development and debugging
|
||||
return;
|
||||
end
|
||||
local ok, err = xpcall(listener, traceback, self, ...);
|
||||
local onerror = self.listeners.onerror or traceback;
|
||||
local ok, err = xpcall(listener, onerror, self, ...);
|
||||
if not ok then
|
||||
if cfg.fatal_errors then
|
||||
self:error("Closing due to error calling on%s: %s", what, err);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue