summary refs log tree commit diff
path: root/docker
diff options
context:
space:
mode:
authorrealtyem <realtyem@gmail.com>2022-11-16 16:16:25 -0600
committerGitHub <noreply@github.com>2022-11-16 22:16:25 +0000
commitc15e9a0edb696990365ac5a4e5be847b5ae23921 (patch)
tree45ec8a2c4b810899966b5675482e63093d9b6eba /docker
parentMerge branch 'release-v1.72' into develop (diff)
downloadsynapse-c15e9a0edb696990365ac5a4e5be847b5ae23921.tar.xz
Remove need for `worker_main_http_uri` setting to use /keys/upload. (#14400)
Diffstat (limited to 'docker')
-rwxr-xr-xdocker/configure_workers_and_start.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/docker/configure_workers_and_start.py b/docker/configure_workers_and_start.py
index 62b1bab297..c1e1544536 100755
--- a/docker/configure_workers_and_start.py
+++ b/docker/configure_workers_and_start.py
@@ -213,10 +213,7 @@ WORKERS_CONFIG: Dict[str, Dict[str, Any]] = {
         "listener_resources": ["client", "replication"],
         "endpoint_patterns": ["^/_matrix/client/(api/v1|r0|v3|unstable)/keys/upload"],
         "shared_extra_conf": {},
-        "worker_extra_conf": (
-            "worker_main_http_uri: http://127.0.0.1:%d"
-            % (MAIN_PROCESS_HTTP_LISTENER_PORT,)
-        ),
+        "worker_extra_conf": "",
     },
     "account_data": {
         "app": "synapse.app.generic_worker",