summary refs log tree commit diff
diff options
context:
space:
mode:
authorkegsay <kegan@matrix.org>2021-09-08 17:24:53 +0100
committerGitHub <noreply@github.com>2021-09-08 17:24:53 +0100
commit01df612e1e3fe4566dbf31d00360c61840504f0a (patch)
tree9718a44fcc2ac6d799bd8d85a3c4281630684ac9
parentAdd a script to update the debian changelog for non-Debian systems (#10778) (diff)
downloadsynapse-01df612e1e3fe4566dbf31d00360c61840504f0a.tar.xz
Fix frontend_proxy jinja script in docker workers (#10783)
-rw-r--r--changelog.d/10783.bugfix1
-rwxr-xr-xdocker/configure_workers_and_start.py2
2 files changed, 2 insertions, 1 deletions
diff --git a/changelog.d/10783.bugfix b/changelog.d/10783.bugfix
new file mode 100644
index 0000000000..f5b40d65a0
--- /dev/null
+++ b/changelog.d/10783.bugfix
@@ -0,0 +1 @@
+Fix a bug which generated invalid homeserver config when the `frontend_proxy` worker type was passed to the Synapse Worker-based Complement image.
\ No newline at end of file
diff --git a/docker/configure_workers_and_start.py b/docker/configure_workers_and_start.py
index 1d22a4d571..efb9476cd6 100755
--- a/docker/configure_workers_and_start.py
+++ b/docker/configure_workers_and_start.py
@@ -162,7 +162,7 @@ WORKERS_CONFIG = {
         "shared_extra_conf": {},
         "worker_extra_conf": (
             "worker_main_http_uri: http://127.0.0.1:%d"
-            % (MAIN_PROCESS_HTTP_LISTENER_PORT,),
+            % (MAIN_PROCESS_HTTP_LISTENER_PORT,)
         ),
     },
 }