summary refs log tree commit diff
path: root/synapse/http
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2018-11-20 11:30:43 +0000
committerErik Johnston <erik@matrix.org>2018-11-20 11:30:43 +0000
commit775441105a673378de9fc66eb3476aedc7ee3353 (patch)
tree63fccd1e196c58d69a4b288c19a7898bcc690996 /synapse/http
parentDelta file (diff)
downloadsynapse-775441105a673378de9fc66eb3476aedc7ee3353.tar.xz
Reduce timeouts for sending transaction
Diffstat (limited to 'synapse/http')
-rw-r--r--synapse/http/matrixfederationclient.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/http/matrixfederationclient.py b/synapse/http/matrixfederationclient.py
index 24b6110c20..b54d4a7b89 100644
--- a/synapse/http/matrixfederationclient.py
+++ b/synapse/http/matrixfederationclient.py
@@ -196,7 +196,7 @@ class MatrixFederationHttpClient(object):
         self.clock = hs.get_clock()
         self._store = hs.get_datastore()
         self.version_string_bytes = hs.version_string.encode('ascii')
-        self.default_timeout = 60
+        self.default_timeout = 30
 
         def schedule(x):
             reactor.callLater(_EPSILON, x)