mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
When using synctl with workers, don't start the main synapse automatically
This commit is contained in:
parent
07ab948c38
commit
7cd34512d8
@ -1,3 +1,10 @@
|
|||||||
|
Unreleased
|
||||||
|
==========
|
||||||
|
|
||||||
|
synctl no longer starts the main synapse when using ``-a`` option with workers.
|
||||||
|
A new worker file should be added with ``worker_app: synapse.app.homeserver``
|
||||||
|
|
||||||
|
|
||||||
Changes in synapse v0.26.0 (2018-01-05)
|
Changes in synapse v0.26.0 (2018-01-05)
|
||||||
=======================================
|
=======================================
|
||||||
|
|
||||||
|
@ -184,6 +184,9 @@ def main():
|
|||||||
worker_configfiles.append(worker_configfile)
|
worker_configfiles.append(worker_configfile)
|
||||||
|
|
||||||
if options.all_processes:
|
if options.all_processes:
|
||||||
|
# To start the main synapse with -a you need to add a worker file
|
||||||
|
# with worker_app == "synapse.app.homeserver"
|
||||||
|
start_stop_synapse = False
|
||||||
worker_configdir = options.all_processes
|
worker_configdir = options.all_processes
|
||||||
if not os.path.isdir(worker_configdir):
|
if not os.path.isdir(worker_configdir):
|
||||||
write(
|
write(
|
||||||
@ -200,6 +203,21 @@ def main():
|
|||||||
with open(worker_configfile) as stream:
|
with open(worker_configfile) as stream:
|
||||||
worker_config = yaml.load(stream)
|
worker_config = yaml.load(stream)
|
||||||
worker_app = worker_config["worker_app"]
|
worker_app = worker_config["worker_app"]
|
||||||
|
if worker_app == "synapse.app.homeserver":
|
||||||
|
# We need to special case all of this to pick up options that may
|
||||||
|
# be set in the main config file or in this worker config file.
|
||||||
|
worker_pidfile = (
|
||||||
|
worker_config.get("worker_pid_file")
|
||||||
|
or worker_config("pid_file")
|
||||||
|
or pidfile
|
||||||
|
)
|
||||||
|
workers.append(Worker(
|
||||||
|
"synapse.app.homeserver",
|
||||||
|
worker_configfile,
|
||||||
|
worker_pidfile,
|
||||||
|
worker_config.get("synctl_cache_factor") or cache_factor,
|
||||||
|
))
|
||||||
|
else:
|
||||||
worker_pidfile = worker_config["worker_pid_file"]
|
worker_pidfile = worker_config["worker_pid_file"]
|
||||||
worker_daemonize = worker_config["worker_daemonize"]
|
worker_daemonize = worker_config["worker_daemonize"]
|
||||||
assert worker_daemonize, "In config %r: expected '%s' to be True" % (
|
assert worker_daemonize, "In config %r: expected '%s' to be True" % (
|
||||||
|
Loading…
Reference in New Issue
Block a user