Make sure not to open our TCP ports until /after/ the DB is nicely prepared ready for use
This commit is contained in:
parent
6c1f0055dc
commit
2faffc52ee
|
@ -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…
Reference in New Issue