diff options
author | Erik Johnston <erik@matrix.org> | 2018-11-20 11:30:43 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2018-11-20 11:30:43 +0000 |
commit | 775441105a673378de9fc66eb3476aedc7ee3353 (patch) | |
tree | 63fccd1e196c58d69a4b288c19a7898bcc690996 /synapse/http | |
parent | Delta file (diff) | |
download | synapse-775441105a673378de9fc66eb3476aedc7ee3353.tar.xz |
Reduce timeouts for sending transaction
Diffstat (limited to 'synapse/http')
-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 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) |