diff --git a/synapse/server.py b/synapse/server.py
index 12754c89ae..8325d77a7a 100644
--- a/synapse/server.py
+++ b/synapse/server.py
@@ -49,7 +49,9 @@ from synapse.handlers.events import EventHandler, EventStreamHandler
from synapse.handlers.initial_sync import InitialSyncHandler
from synapse.handlers.receipts import ReceiptsHandler
from synapse.handlers.read_marker import ReadMarkerHandler
-from synapse.http.client import SimpleHttpClient, InsecureInterceptableContextFactory
+from synapse.http.client import (
+ SimpleHttpClient, InsecureInterceptableContextFactory, MatrixProxyClient
+)
from synapse.http.matrixfederationclient import MatrixFederationHttpClient
from synapse.notifier import Notifier
from synapse.push.pusherpool import PusherPool
@@ -128,6 +130,7 @@ class HomeServer(object):
'filtering',
'http_client_context_factory',
'simple_http_client',
+ 'matrix_proxy_client',
'media_repository',
'federation_transport_client',
'federation_sender',
@@ -190,6 +193,9 @@ class HomeServer(object):
def build_simple_http_client(self):
return SimpleHttpClient(self)
+ def build_matrix_proxy_client(self):
+ return MatrixProxyClient(self)
+
def build_v1auth(self):
orf = Auth(self)
# Matrix spec makes no reference to what HTTP status code is returned,
|