1
0
Fork 0
mirror of https://github.com/bjc/prosody.git synced 2025-04-05 06:07:37 +03:00

mod_c2s,mod_s2s: Wrap callback to improve tracebacks

Should make traces point here instead of timer dispatch, making
debugging easier
This commit is contained in:
Kim Alvefur 2022-02-22 12:35:31 +01:00
parent e725335ed3
commit 1d20ec63e6
2 changed files with 2 additions and 2 deletions

View file

@ -987,7 +987,7 @@ module:hook("server-stopping", function(event)
-- Wait for them to close properly if they haven't already
if next(sessions) ~= nil then
module:log("info", "Waiting for sessions to close");
add_task(stream_close_timeout + 1, done);
add_task(stream_close_timeout + 1, function () done() end);
wait();
end