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:
parent
e725335ed3
commit
1d20ec63e6
2 changed files with 2 additions and 2 deletions
|
@ -446,7 +446,7 @@ module:hook("server-stopping", function(event)
|
|||
|
||||
-- Wait for them to close properly if they haven't already
|
||||
if next(sessions) ~= nil then
|
||||
add_task(stream_close_timeout+1, done);
|
||||
add_task(stream_close_timeout+1, function () done() end);
|
||||
module:log("info", "Waiting for sessions to close");
|
||||
wait();
|
||||
end
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue