mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_debug_reset: Don't delay operations until next tick
For some unknown reason, this was required with the old mock util.time functions prior to 012d6e7b723a. After 012d6e7b723a, it breaks. So I'm happy to revert to not delaying anything. This makes tests pass again.
This commit is contained in:
parent
00dfd64a86
commit
72c5ac4054
1 changed files with 4 additions and 6 deletions
|
@ -18,18 +18,16 @@ local function do_reset()
|
|||
module:fire_event("server-resetting");
|
||||
for _, host in ipairs(hosts) do
|
||||
hostmanager.deactivate(host);
|
||||
timer.add_task(0, function ()
|
||||
hostmanager.activate(host);
|
||||
module:log("info", "Reset complete");
|
||||
module:fire_event("server-reset");
|
||||
end);
|
||||
hostmanager.activate(host);
|
||||
module:log("info", "Reset complete");
|
||||
module:fire_event("server-reset");
|
||||
end
|
||||
end
|
||||
|
||||
function module.add_host(host_module)
|
||||
host_module:hook("resource-unbind", function ()
|
||||
if next(prosody.full_sessions) == nil then
|
||||
timer.add_task(0, do_reset);
|
||||
do_reset();
|
||||
end
|
||||
end);
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue