Skip to content
Snippets Groups Projects
Unverified Commit a8580c5f authored by Andrew Morgan's avatar Andrew Morgan Committed by GitHub
Browse files

Remove unused store method get_hosts_in_room (#7448)

parent 5cf758cd
No related branches found
No related tags found
No related merge requests found
Remove storage method `get_hosts_in_room` that is no longer called anywhere.
\ No newline at end of file
......@@ -153,16 +153,6 @@ class RoomMemberWorkerStore(EventsWorkerStore):
self._check_safe_current_state_events_membership_updated_txn,
)
@cachedInlineCallbacks(max_entries=100000, iterable=True, cache_context=True)
def get_hosts_in_room(self, room_id, cache_context):
"""Returns the set of all hosts currently in the room
"""
user_ids = yield self.get_users_in_room(
room_id, on_invalidate=cache_context.invalidate
)
hosts = frozenset(get_domain_from_id(user_id) for user_id in user_ids)
return hosts
@cached(max_entries=100000, iterable=True)
def get_users_in_room(self, room_id):
return self.db.runInteraction(
......
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