Skip to content
Snippets Groups Projects
Unverified Commit 200e11c5 authored by Richard van der Hoff's avatar Richard van der Hoff Committed by GitHub
Browse files

Merge pull request #3432 from matrix-org/rav/joined_hosts_cache_non_iterable

Make _get_joined_hosts_cache cache non-iterable
parents 1d7ad117 f8272813
No related branches found
No related tags found
No related merge requests found
...@@ -455,7 +455,7 @@ class RoomMemberWorkerStore(EventsWorkerStore): ...@@ -455,7 +455,7 @@ class RoomMemberWorkerStore(EventsWorkerStore):
defer.returnValue(joined_hosts) defer.returnValue(joined_hosts)
@cached(max_entries=10000, iterable=True) @cached(max_entries=10000)
def _get_joined_hosts_cache(self, room_id): def _get_joined_hosts_cache(self, room_id):
return _JoinedHostsCache(self, room_id) return _JoinedHostsCache(self, room_id)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment