diff options
author | David Baker <dbkr@matrix.org> | 2014-11-19 18:20:59 +0000 |
---|---|---|
committer | David Baker <dbkr@matrix.org> | 2014-11-19 18:20:59 +0000 |
commit | 74c38797601f6d7d1a02d21fc54ceb1a54629c64 (patch) | |
tree | 153adbc5582198065f6a4b7eb3612f893afa3298 /synapse/app | |
parent | Fix tests from prev commit (diff) | |
download | synapse-74c38797601f6d7d1a02d21fc54ceb1a54629c64.tar.xz |
Start creating a module to do generic notifications (just prints them to stdout currently!)
Diffstat (limited to 'synapse/app')
-rwxr-xr-x | synapse/app/homeserver.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/app/homeserver.py b/synapse/app/homeserver.py index 85284a4919..de16d8a2e1 100755 --- a/synapse/app/homeserver.py +++ b/synapse/app/homeserver.py @@ -242,6 +242,8 @@ def setup(): bind_port = None hs.start_listening(bind_port, config.unsecure_port) + hs.get_pusherpool().start() + if config.daemonize: print config.pid_file daemon = Daemonize( |