diff options
author | Erik Johnston <erik@matrix.org> | 2016-09-02 14:08:33 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-09-02 14:08:33 +0100 |
commit | cce957e254149fa1123b91ab09d1cc8ff2125786 (patch) | |
tree | 3208719d1416effeb30c630a9f9b83ed5567381b | |
parent | Merge pull request #1062 from matrix-org/markjh/direct_to_device_synchrotron (diff) | |
download | synapse-cce957e254149fa1123b91ab09d1cc8ff2125786.tar.xz |
Bump max_entries on get_destination_retry_timings
-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 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. |