diff options
author | Erik Johnston <erik@matrix.org> | 2019-07-22 15:22:14 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2019-07-22 15:22:14 +0100 |
commit | 80cfad233efc6b03c75ab5496db7079466eeb894 (patch) | |
tree | fbf153921c3d7dec38961dcb332b890b5c169342 /synapse/app/appservice.py | |
parent | Newsfile (diff) | |
download | synapse-80cfad233efc6b03c75ab5496db7079466eeb894.tar.xz |
Call startup commands as system triggers.
This helps ensures that we only consider ourselves "up" once all the startup functions have completed.
Diffstat (limited to 'synapse/app/appservice.py')
-rw-r--r-- | synapse/app/appservice.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/synapse/app/appservice.py b/synapse/app/appservice.py index e01f3e5f3b..54bb114dec 100644 --- a/synapse/app/appservice.py +++ b/synapse/app/appservice.py @@ -168,7 +168,9 @@ def start(config_options): ) ps.setup() - reactor.callWhenRunning(_base.start, ps, config.worker_listeners) + reactor.addSystemEventTrigger( + "before", "startup", _base.start, ps, config.worker_listeners + ) _base.start_worker_reactor("synapse-appservice", config) |