0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-19 19:18:19 +02:00

Make sure not to open our TCP ports until /after/ the DB is nicely prepared ready for use

This commit is contained in:
Paul "LeoNerd" Evans 2014-09-10 16:16:24 +01:00
parent 6c1f0055dc
commit 2faffc52ee

View file

@ -207,7 +207,6 @@ def setup():
web_client=config.webclient,
redirect_root_to_web_client=True,
)
hs.start_listening(config.bind_port, config.unsecure_port)
prepare_database(hs.get_db_name())
@ -220,6 +219,8 @@ def setup():
f.namespace['hs'] = hs
reactor.listenTCP(config.manhole, f, interface='127.0.0.1')
hs.start_listening(config.bind_port, config.unsecure_port)
if config.daemonize:
print config.pid_file
daemon = Daemonize(