summary refs log tree commit diff
path: root/synapse/http/proxyagent.py
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2021-04-09 01:44:57 +0100
committerAndrew Morgan <andrew@amorgan.xyz>2021-04-09 01:44:57 +0100
commit0de0fe0fe72bb2e2e0044908b9b89fe489bdff5c (patch)
tree0c8a3541b2797e8055c8b171cde8d57fcba79227 /synapse/http/proxyagent.py
parentChangelog (diff)
parentBugbear: Add Mutable Parameter fixes (#9682) (diff)
downloadsynapse-0de0fe0fe72bb2e2e0044908b9b89fe489bdff5c.tar.xz
Merge branch 'develop' of github.com:matrix-org/synapse into anoa/allow_admins_delist_as_rooms
Diffstat (limited to 'synapse/http/proxyagent.py')
-rw-r--r--synapse/http/proxyagent.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/synapse/http/proxyagent.py b/synapse/http/proxyagent.py

index 16ec850064..ea5ad14cb0 100644 --- a/synapse/http/proxyagent.py +++ b/synapse/http/proxyagent.py
@@ -27,7 +27,7 @@ from twisted.python.failure import Failure from twisted.web.client import URI, BrowserLikePolicyForHTTPS, _AgentBase from twisted.web.error import SchemeNotSupported from twisted.web.http_headers import Headers -from twisted.web.iweb import IAgent +from twisted.web.iweb import IAgent, IPolicyForHTTPS from synapse.http.connectproxyclient import HTTPConnectProxyEndpoint @@ -88,12 +88,14 @@ class ProxyAgent(_AgentBase): self, reactor, proxy_reactor=None, - contextFactory=BrowserLikePolicyForHTTPS(), + contextFactory: Optional[IPolicyForHTTPS] = None, connectTimeout=None, bindAddress=None, pool=None, use_proxy=False, ): + contextFactory = contextFactory or BrowserLikePolicyForHTTPS() + _AgentBase.__init__(self, reactor, pool) if proxy_reactor is None: