mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.startup: Fix notifying config-reload to systemd
Does this event name seem backwards to anyone else?
This commit is contained in:
parent
269d40f1ea
commit
a4f4acaa55
1 changed files with 1 additions and 1 deletions
|
@ -831,7 +831,7 @@ function startup.systemd_notify()
|
|||
prosody.events.add_handler("server-started", function()
|
||||
notify_socket:send("READY=1");
|
||||
end);
|
||||
prosody.events.add_handler("config-reloading", function()
|
||||
prosody.events.add_handler("reloading-config", function()
|
||||
notify_socket:send(string.format("RELOADING=1\nMONOTONIC_USEC=%d", math.floor(time.monotonic() * 1000000)));
|
||||
end);
|
||||
prosody.events.add_handler("config-reloaded", function()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue