diff options
author | Matthew Hodgson <matthew@matrix.org> | 2014-12-07 23:44:16 +0000 |
---|---|---|
committer | Matthew Hodgson <matthew@matrix.org> | 2014-12-07 23:44:16 +0000 |
commit | 5cd43d4b9f3c41b21ced0ab44cf24c2cf7dab817 (patch) | |
tree | 8060d1851dfa4abdf911870355c440cc727411e2 /synapse/storage/transactions.py | |
parent | track replication destination health, and perform exponential back-off when s... (diff) | |
download | synapse-5cd43d4b9f3c41b21ced0ab44cf24c2cf7dab817.tar.xz |
fix stupid syntax thinkos
Diffstat (limited to 'synapse/storage/transactions.py')
-rw-r--r-- | synapse/storage/transactions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/transactions.py b/synapse/storage/transactions.py index 47b73f7458..cacd948302 100644 --- a/synapse/storage/transactions.py +++ b/synapse/storage/transactions.py @@ -230,7 +230,7 @@ class TransactionStore(SQLBaseStore): else: return None - def set_destination_retry_timings(self, destination): + def set_destination_retry_timings(self, destination, retry_last_ts, retry_interval): """Sets the current retry timings for a given destination. Both timings should be zero if retrying is no longer occuring. |