summary refs log tree commit diff
path: root/synapse/federation
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/federation
parentDelta file (diff)
downloadsynapse-775441105a673378de9fc66eb3476aedc7ee3353.tar.xz
Reduce timeouts for sending transaction
Diffstat (limited to 'synapse/federation')
-rw-r--r--synapse/federation/transport/client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/federation/transport/client.py b/synapse/federation/transport/client.py
index edba5a9808..5e8bf8ac76 100644
--- a/synapse/federation/transport/client.py
+++ b/synapse/federation/transport/client.py
@@ -174,7 +174,7 @@ class TransportLayerClient(object):
             path=path,
             data=json_data,
             json_data_callback=json_data_callback,
-            long_retries=True,
+            long_retries=False,
             backoff_on_404=True,  # If we get a 404 the other side has gone
         )