is_partial_state_rooms -> is_partial_state_room_batched
This commit is contained in:
@@ -1383,7 +1383,7 @@ class SyncHandler:
|
||||
if not sync_config.filter_collection.lazy_load_members():
|
||||
# Non-lazy syncs should never include partially stated rooms.
|
||||
# Exclude all partially stated rooms from this sync.
|
||||
results = await self.store.is_partial_state_rooms(mutable_joined_room_ids)
|
||||
results = await self.store.is_partial_state_room_batched(mutable_joined_room_ids)
|
||||
mutable_rooms_to_exclude.update(
|
||||
room_id
|
||||
for room_id, is_partial_state in results.items()
|
||||
@@ -1404,7 +1404,7 @@ class SyncHandler:
|
||||
mutable_joined_room_ids,
|
||||
)
|
||||
)
|
||||
results = await self.store.is_partial_state_rooms(un_partial_stated_rooms)
|
||||
results = await self.store.is_partial_state_room_batched(un_partial_stated_rooms)
|
||||
forced_newly_joined_room_ids.update(
|
||||
room_id
|
||||
for room_id, is_partial_state in results.items()
|
||||
|
||||
@@ -1275,7 +1275,7 @@ class RoomWorkerStore(CacheInvalidationWorkerStore):
|
||||
return entry is not None
|
||||
|
||||
@cachedList(cached_method_name="is_partial_state_room", list_name="room_ids")
|
||||
async def is_partial_state_rooms(
|
||||
async def is_partial_state_room_batched(
|
||||
self, room_ids: StrCollection
|
||||
) -> Mapping[str, bool]:
|
||||
"""Checks if the given rooms have partial state.
|
||||
|
||||
Reference in New Issue
Block a user