Skip to content
Snippets Groups Projects
Commit 832e9c52 authored by Erik Johnston's avatar Erik Johnston
Browse files

Comment

parent 54a79c1d
No related branches found
No related tags found
No related merge requests found
...@@ -282,6 +282,8 @@ class RoomMemberStore(SQLBaseStore): ...@@ -282,6 +282,8 @@ class RoomMemberStore(SQLBaseStore):
@cachedInlineCallbacks(max_entries=50000, cache_context=True, iterable=True) @cachedInlineCallbacks(max_entries=50000, cache_context=True, iterable=True)
def get_users_who_share_room_with_user(self, user_id, cache_context): def get_users_who_share_room_with_user(self, user_id, cache_context):
"""Returns the set of users who share a room with `user_id`
"""
rooms = yield self.get_rooms_for_user( rooms = yield self.get_rooms_for_user(
user_id, on_invalidate=cache_context.invalidate, user_id, on_invalidate=cache_context.invalidate,
) )
...@@ -291,7 +293,6 @@ class RoomMemberStore(SQLBaseStore): ...@@ -291,7 +293,6 @@ class RoomMemberStore(SQLBaseStore):
user_ids = yield self.get_users_in_room( user_ids = yield self.get_users_in_room(
room.room_id, on_invalidate=cache_context.invalidate, room.room_id, on_invalidate=cache_context.invalidate,
) )
logger.info("Users in room: %r %r", room.room_id, user_ids)
user_who_share_room.update(user_ids) user_who_share_room.update(user_ids)
defer.returnValue(user_who_share_room) defer.returnValue(user_who_share_room)
......
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