mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-15 22:13:50 +01:00
Change public room list to use defer.gatherResults
This commit is contained in:
parent
1fae1b3166
commit
9060dc6b59
1 changed files with 13 additions and 5 deletions
|
@ -529,11 +529,19 @@ class RoomListHandler(BaseHandler):
|
|||
@defer.inlineCallbacks
|
||||
def get_public_room_list(self):
|
||||
chunk = yield self.store.get_rooms(is_public=True)
|
||||
for room in chunk:
|
||||
joined_users = yield self.store.get_users_in_room(
|
||||
room_id=room["room_id"],
|
||||
)
|
||||
room["num_joined_members"] = len(joined_users)
|
||||
results = yield defer.gatherResults(
|
||||
[
|
||||
self.store.get_users_in_room(
|
||||
room_id=room["room_id"],
|
||||
)
|
||||
for room in chunk
|
||||
],
|
||||
consumeErrors=True,
|
||||
)
|
||||
|
||||
for i, room in enumerate(chunk):
|
||||
room["num_joined_members"] = len(len(results[i]))
|
||||
|
||||
# FIXME (erikj): START is no longer a valid value
|
||||
defer.returnValue({"start": "START", "end": "END", "chunk": chunk})
|
||||
|
||||
|
|
Loading…
Reference in a new issue