diff options
author | Erik Johnston <erik@matrix.org> | 2015-05-28 16:48:53 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-05-28 16:48:53 +0100 |
commit | 79e37a7ecbb566f63393ee47728e5cddfdc2810e (patch) | |
tree | 4ef6245ffc86cb1f6af9d180caf53e821e85cbaa /synapse/http/matrixfederationclient.py | |
parent | Merge pull request #168 from matrix-org/erikj/conn_pool (diff) | |
download | synapse-79e37a7ecbb566f63393ee47728e5cddfdc2810e.tar.xz |
Correctly pass connection pool parameter
Diffstat (limited to 'synapse/http/matrixfederationclient.py')
-rw-r--r-- | synapse/http/matrixfederationclient.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/http/matrixfederationclient.py b/synapse/http/matrixfederationclient.py index 44f0b00333..7f3d8fc884 100644 --- a/synapse/http/matrixfederationclient.py +++ b/synapse/http/matrixfederationclient.py @@ -105,7 +105,7 @@ class MatrixFederationHttpClient(object): self.server_name = hs.hostname pool = HTTPConnectionPool(reactor) pool.maxPersistentPerHost = 10 - self.agent = MatrixFederationHttpAgent(reactor, pool) + self.agent = MatrixFederationHttpAgent(reactor, pool=pool) self.clock = hs.get_clock() self.version_string = hs.version_string |