diff options
author | Erik Johnston <erik@matrix.org> | 2016-08-19 11:59:29 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-08-19 14:17:11 +0100 |
commit | ba214a5e325adbf8ab430cb15f55d2c7544eba8b (patch) | |
tree | 01e19b7fa2dd6d5ec121946759c48ea815db97c5 /synapse/storage/pusher.py | |
parent | Add concept of cache contexts (diff) | |
download | synapse-ba214a5e325adbf8ab430cb15f55d2c7544eba8b.tar.xz |
Remove lru option
Diffstat (limited to 'synapse/storage/pusher.py')
-rw-r--r-- | synapse/storage/pusher.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/pusher.py b/synapse/storage/pusher.py index a7d7c54d7e..8f5f8f24a9 100644 --- a/synapse/storage/pusher.py +++ b/synapse/storage/pusher.py @@ -135,7 +135,7 @@ class PusherStore(SQLBaseStore): "get_all_updated_pushers", get_all_updated_pushers_txn ) - @cachedInlineCallbacks(lru=True, num_args=1, max_entries=15000) + @cachedInlineCallbacks(num_args=1, max_entries=15000) def get_if_user_has_pusher(self, user_id): result = yield self._simple_select_many_batch( table='pushers', |