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

pull/4/merge
Paul "LeoNerd" Evans 10 years ago
parent 6c1f0055dc
commit 2faffc52ee
  1. 3
      synapse/app/homeserver.py

@ -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(

Loading…
Cancel
Save