diff options
author | Mark Haines <mark.haines@matrix.org> | 2016-04-01 10:34:51 +0100 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2016-04-01 10:34:51 +0100 |
commit | 7753fc65702dc2b98885f462fe0e6ac9f8e27b06 (patch) | |
tree | 839e3aea52edbfcdd7f811fedc74106a6d2ab5fd /synapse | |
parent | Merge pull request #680 from matrix-org/markjh/remove_is_new_state (diff) | |
download | synapse-7753fc65702dc2b98885f462fe0e6ac9f8e27b06.tar.xz |
Fix the invalidation of the names and aliases cache
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/storage/events.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/events.py b/synapse/storage/events.py index 83279d65fa..7468e6e00c 100644 --- a/synapse/storage/events.py +++ b/synapse/storage/events.py @@ -198,7 +198,7 @@ class EventsStore(SQLBaseStore): txn.call_after(self.get_rooms_for_user.invalidate_all) txn.call_after(self.get_users_in_room.invalidate, (event.room_id,)) txn.call_after(self.get_joined_hosts_for_room.invalidate, (event.room_id,)) - txn.call_after(self.get_room_name_and_aliases, event.room_id) + txn.call_after(self.get_room_name_and_aliases.invalidate, (event.room_id,)) # Add an entry to the current_state_resets table to record the point # where we clobbered the current state |