diff options
author | reivilibre <oliverw@matrix.org> | 2022-06-30 12:58:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-30 11:58:12 +0000 |
commit | 9667bad55d8b50fe08990a8cfd2ac82c8540bcc1 (patch) | |
tree | 663c46095087d83481f7e459ed1d6f7f5ecd5105 /docker/start.py | |
parent | Actually typecheck `tests.test_server` (#13135) (diff) | |
download | synapse-9667bad55d8b50fe08990a8cfd2ac82c8540bcc1.tar.xz |
Improve startup times in Complement test runs against workers, particularly in CPU-constrained environments. (#13127)
Co-authored-by: Richard van der Hoff <1389908+richvdh@users.noreply.github.com>
Diffstat (limited to 'docker/start.py')
-rwxr-xr-x | docker/start.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/docker/start.py b/docker/start.py index 4ac8f03477..5a98dce551 100755 --- a/docker/start.py +++ b/docker/start.py @@ -110,7 +110,11 @@ def generate_config_from_template( log_config_file = environ["SYNAPSE_LOG_CONFIG"] log("Generating log config file " + log_config_file) - convert("/conf/log.config", log_config_file, environ) + convert( + "/conf/log.config", + log_config_file, + {**environ, "include_worker_name_in_log_line": False}, + ) # Hopefully we already have a signing key, but generate one if not. args = [ |