summary refs log tree commit diff
path: root/synapse/app/_base.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2023-05-10 14:04:42 +0100
committerErik Johnston <erik@matrix.org>2023-05-10 14:15:25 +0100
commitac05d88bcd2a44ac58f9869d0b9b2af3bf93b36b (patch)
treee4c063ce9fb028e50fdee634eda053c560e04fa1 /synapse/app/_base.py
parentFix documented path to largest rooms statistics endpoint. (#15560) (diff)
downloadsynapse-erikj/worker_proxy.tar.xz
Diffstat (limited to '')
-rw-r--r--synapse/app/_base.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/app/_base.py b/synapse/app/_base.py

index 7f83b34d89..ec7b676161 100644 --- a/synapse/app/_base.py +++ b/synapse/app/_base.py
@@ -381,6 +381,7 @@ def listen_unix( def listen_http( + hs: "HomeServer", listener_config: ListenerConfig, root_resource: Resource, version_string: str, @@ -401,6 +402,7 @@ def listen_http( version_string, max_request_body_size=max_request_body_size, reactor=reactor, + federation_agent=hs.get_federation_http_client().agent, ) if isinstance(listener_config, TCPListenerConfig):