Use get_users_in_room and declare it iterable

This commit is contained in:
Erik Johnston 2017-01-30 16:37:22 +00:00
parent 9636b2407d
commit 828db669ec
2 changed files with 2 additions and 2 deletions

View file

@ -203,7 +203,7 @@ class DeviceHandler(BaseHandler):
hosts = set()
if self.hs.is_mine_id(user_id):
for room_id in room_ids:
users = yield self.state.get_current_user_in_room(room_id)
users = yield self.store.get_users_in_room(room_id)
hosts.update(get_domain_from_id(u) for u in users)
hosts.discard(self.server_name)

View file

@ -131,7 +131,7 @@ class RoomMemberStore(SQLBaseStore):
with self._stream_id_gen.get_next() as stream_ordering:
yield self.runInteraction("locally_reject_invite", f, stream_ordering)
@cached(max_entries=5000)
@cached(max_entries=1000000, iterable=True)
def get_users_in_room(self, room_id):
def f(txn):