diff options
author | Erik Johnston <erik@matrix.org> | 2019-07-23 13:06:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-23 13:06:53 +0100 |
commit | 841b12867eba270d7e3725029a238e7be19a8b67 (patch) | |
tree | 900caae121144a3565de0d1aabc396c951337052 /synapse/app/pusher.py | |
parent | Merge pull request #5740 from matrix-org/erikj/worker_flakey_tests (diff) | |
parent | Also update systemd-with-workers contrib examples (diff) | |
download | synapse-841b12867eba270d7e3725029a238e7be19a8b67.tar.xz |
Merge pull request #5732 from matrix-org/erikj/sdnotify
Add process hooks to tell systemd our state.
Diffstat (limited to 'synapse/app/pusher.py')
-rw-r--r-- | synapse/app/pusher.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/app/pusher.py b/synapse/app/pusher.py index 070de7d0b0..692ffa2f04 100644 --- a/synapse/app/pusher.py +++ b/synapse/app/pusher.py @@ -216,7 +216,7 @@ def start(config_options): _base.start(ps, config.worker_listeners) ps.get_pusherpool().start() - reactor.callWhenRunning(start) + reactor.addSystemEventTrigger("before", "startup", start) _base.start_worker_reactor("synapse-pusher", config) |