Use `merge_into` when adding workers to the shared config

rei/cwas_extension
Olivier Wilkinson (reivilibre) 2023-11-16 15:55:37 +00:00
parent f49dbc7ba7
commit 3bb21a9c26
1 changed files with 3 additions and 4 deletions

View File

@ -784,10 +784,9 @@ def generate_worker_files(
{"name": worker_name, "port": str(worker_port), "config_path": config_path}
)
# Update the shared config with any worker_type specific options. The first of a
# given worker_type needs to stay assigned and not be replaced.
worker_config["shared_extra_conf"].update(shared_config)
shared_config = worker_config["shared_extra_conf"]
# Update the shared config with any options needed to enable this worker.
merge_into(shared_config, worker_config["shared_extra_conf"])
if using_unix_sockets:
healthcheck_urls.append(
f"--unix-socket /run/worker.{worker_port} http://localhost/health"