Don't build handlers on workers unnecessarily

pull/14/head
Erik Johnston 7 years ago
parent ea7b3c4b1b
commit d023ecb810
  1. 1
      synapse/app/client_reader.py
  2. 1
      synapse/app/event_creator.py
  3. 1
      synapse/app/federation_reader.py
  4. 1
      synapse/app/frontend_proxy.py
  5. 1
      synapse/app/media_repository.py

@ -156,7 +156,6 @@ def start(config_options):
)
ss.setup()
ss.get_handlers()
ss.start_listening(config.worker_listeners)
def start():

@ -161,7 +161,6 @@ def start(config_options):
)
ss.setup()
ss.get_handlers()
ss.start_listening(config.worker_listeners)
def start():

@ -144,7 +144,6 @@ def start(config_options):
)
ss.setup()
ss.get_handlers()
ss.start_listening(config.worker_listeners)
def start():

@ -211,7 +211,6 @@ def start(config_options):
)
ss.setup()
ss.get_handlers()
ss.start_listening(config.worker_listeners)
def start():

@ -158,7 +158,6 @@ def start(config_options):
)
ss.setup()
ss.get_handlers()
ss.start_listening(config.worker_listeners)
def start():

Loading…
Cancel
Save