Fix SSL for federation http client

paul/schema_breaking_changes
Mark Haines 2014-09-01 18:43:08 +01:00
parent 00b042a3eb
commit 5452a8ee29
2 changed files with 2 additions and 2 deletions

View File

@ -180,7 +180,7 @@ class TwistedHttpClient(HttpClient):
# TODO: setup and pass in an ssl_context to enable TLS
endpoint = matrix_endpoint(
reactor, destination, timeout=10,
ssl_context_factory=self.hs.tls_tls_context_factory
ssl_context_factory=self.hs.tls_context_factory
)
while True:

View File

@ -53,7 +53,7 @@ def matrix_endpoint(reactor, destination, ssl_context_factory=None,
default_port = 8080
else:
transport_endpoint = SSL4ClientEndpoint
endpoint_kw_args.update(ssl_context_factory=ssl_context_factory)
endpoint_kw_args.update(sslContextFactory=ssl_context_factory)
default_port = 443
if port is None: