summary refs log tree commit diff
path: root/synapse/storage/transactions.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2018-10-02 16:44:57 +0100
committerErik Johnston <erik@matrix.org>2018-10-02 16:44:57 +0100
commitc4b37cbf18cab6e19cc67c93bd090077435b7dd2 (patch)
tree63b080f21490ab7d707b8003a2d50916b9b17b50 /synapse/storage/transactions.py
parentMerge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixes (diff)
parentMerge pull request #3991 from matrix-org/erikj/fix_pop_retry_cache (diff)
downloadsynapse-c4b37cbf18cab6e19cc67c93bd090077435b7dd2.tar.xz
Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixes
Diffstat (limited to 'synapse/storage/transactions.py')
-rw-r--r--synapse/storage/transactions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/transactions.py b/synapse/storage/transactions.py

index ab54977a75..a3032cdce9 100644 --- a/synapse/storage/transactions.py +++ b/synapse/storage/transactions.py
@@ -216,7 +216,7 @@ class TransactionStore(SQLBaseStore): retry_interval (int) - how long until next retry in ms """ - self._destination_retry_cache.pop(destination) + self._destination_retry_cache.pop(destination, None) return self.runInteraction( "set_destination_retry_timings", self._set_destination_retry_timings,