summary refs log tree commit diff
path: root/synapse/storage
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2016-09-02 14:08:33 +0100
committerErik Johnston <erik@matrix.org>2016-09-02 14:08:33 +0100
commitcce957e254149fa1123b91ab09d1cc8ff2125786 (patch)
tree3208719d1416effeb30c630a9f9b83ed5567381b /synapse/storage
parentMerge pull request #1062 from matrix-org/markjh/direct_to_device_synchrotron (diff)
downloadsynapse-cce957e254149fa1123b91ab09d1cc8ff2125786.tar.xz
Bump max_entries on get_destination_retry_timings
Diffstat (limited to 'synapse/storage')
-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 1c588bd46b..5055c04b24 100644
--- a/synapse/storage/transactions.py
+++ b/synapse/storage/transactions.py
@@ -245,7 +245,7 @@ class TransactionStore(SQLBaseStore):
 
         return self.cursor_to_dict(txn)
 
-    @cached()
+    @cached(max_entries=10000)
     def get_destination_retry_timings(self, destination):
         """Gets the current retry timings (if any) for a given destination.