mirror of
https://mau.dev/maunium/synapse.git
synced 2025-03-05 12:30:19 +01:00
Merge pull request #3432 from matrix-org/rav/joined_hosts_cache_non_iterable
Make _get_joined_hosts_cache cache non-iterable
This commit is contained in:
commit
200e11c5bf
1 changed files with 1 additions and 1 deletions
|
@ -455,7 +455,7 @@ class RoomMemberWorkerStore(EventsWorkerStore):
|
|||
|
||||
defer.returnValue(joined_hosts)
|
||||
|
||||
@cached(max_entries=10000, iterable=True)
|
||||
@cached(max_entries=10000)
|
||||
def _get_joined_hosts_cache(self, room_id):
|
||||
return _JoinedHostsCache(self, room_id)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue