net.server: Disable epoll signalfd handling by default until problems resolved

This commit is contained in:
Kim Alvefur 2024-03-01 19:22:49 +01:00
parent 865df3d373
commit ed0188ce81

View file

@ -87,6 +87,11 @@ else
end
end
if server_type == "epoll" and os.getenv "PROSODY_EPOLL_SIGNALS" ~= "1" then
-- Until we can track down why this only works for me
server.hook_signal = nil;
end
-- If server.hook_signal exists, replace signal.signal()
local has_signal, signal = pcall(require, "prosody.util.signal");
if has_signal then