0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-30 16:38:21 +02:00

Make _get_joined_hosts_cache cache non-iterable

This commit is contained in:
Erik Johnston 2018-02-14 13:53:55 +00:00 committed by Richard van der Hoff
parent ce0d911156
commit f8272813a9

View file

@ -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)