diff options
author | reivilibre <oliverw@matrix.org> | 2022-04-27 14:39:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-27 14:39:41 +0100 |
commit | d743b25c8f0c96516d9c374ee946e93e937e2c5b (patch) | |
tree | 37ab35448d2e3ebd6a1734cc1f53afc9d1df40b6 /docker/configure_workers_and_start.py | |
parent | Make `scripts-dev` pass `mypy --disallow-untyped-defs` (#12356) (diff) | |
download | synapse-d743b25c8f0c96516d9c374ee946e93e937e2c5b.tar.xz |
Use supervisord to supervise Postgres and Caddy in the Complement image. (#12480)
Co-authored-by: Richard van der Hoff <1389908+richvdh@users.noreply.github.com>
Diffstat (limited to 'docker/configure_workers_and_start.py')
-rwxr-xr-x | docker/configure_workers_and_start.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/configure_workers_and_start.py b/docker/configure_workers_and_start.py index 3bda6c300b..33fc20d218 100755 --- a/docker/configure_workers_and_start.py +++ b/docker/configure_workers_and_start.py @@ -171,7 +171,7 @@ WORKERS_CONFIG: Dict[str, Dict[str, Any]] = { # Templates for sections that may be inserted multiple times in config files SUPERVISORD_PROCESS_CONFIG_BLOCK = """ [program:synapse_{name}] -command=/usr/local/bin/python -m {app} \ +command=/usr/local/bin/prefix-log /usr/local/bin/python -m {app} \ --config-path="{config_path}" \ --config-path=/conf/workers/shared.yaml \ --config-path=/conf/workers/{name}.yaml |