forked from MirrorHub/synapse
Lower get_linearized_receipts_for_room cache size
This commit is contained in:
parent
1b91ff685f
commit
5405351b14
1 changed files with 1 additions and 1 deletions
|
@ -145,7 +145,7 @@ class ReceiptsStore(SQLBaseStore):
|
|||
|
||||
defer.returnValue([ev for res in results.values() for ev in res])
|
||||
|
||||
@cachedInlineCallbacks(num_args=3, max_entries=5000, tree=True)
|
||||
@cachedInlineCallbacks(num_args=3, tree=True)
|
||||
def get_linearized_receipts_for_room(self, room_id, to_key, from_key=None):
|
||||
"""Get receipts for a single room for sending to clients.
|
||||
|
||||
|
|
Loading…
Reference in a new issue