diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2020-08-12 12:14:34 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-12 12:14:34 -0400 |
commit | fbe930dad28c81a5e563ddc8683f65b8279aad52 (patch) | |
tree | 2a8a98977cf85509212373f7222f12cfc6226ad7 /synapse/storage/_base.py | |
parent | Convert devices database to async/await. (#8069) (diff) | |
download | synapse-fbe930dad28c81a5e563ddc8683f65b8279aad52.tar.xz |
Convert the roommember database to async/await. (#8070)
Diffstat (limited to 'synapse/storage/_base.py')
-rw-r--r-- | synapse/storage/_base.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/synapse/storage/_base.py b/synapse/storage/_base.py index ca800df831..6814bf5fcf 100644 --- a/synapse/storage/_base.py +++ b/synapse/storage/_base.py @@ -58,7 +58,6 @@ class SQLBaseStore(metaclass=ABCMeta): """ for host in {get_domain_from_id(u) for u in members_changed}: self._attempt_to_invalidate_cache("is_host_joined", (room_id, host)) - self._attempt_to_invalidate_cache("was_host_joined", (room_id, host)) self._attempt_to_invalidate_cache("get_users_in_room", (room_id,)) self._attempt_to_invalidate_cache("get_room_summary", (room_id,)) |