diff options
author | Erik Johnston <erik@matrix.org> | 2019-05-20 12:06:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-20 12:06:19 +0100 |
commit | 210cb6dae246ea0a349e67498956d94344d72f91 (patch) | |
tree | 8cf587505698b71cf6a8c2f649eb6eb7c81a6135 /synapse/replication/slave/storage/events.py | |
parent | Merge pull request #5192 from matrix-org/erikj/relations_aggregations (diff) | |
parent | Fixup bsaed on review comments (diff) | |
download | synapse-210cb6dae246ea0a349e67498956d94344d72f91.tar.xz |
Merge pull request #5195 from matrix-org/erikj/edits
Add basic editing support
Diffstat (limited to 'synapse/replication/slave/storage/events.py')
-rw-r--r-- | synapse/replication/slave/storage/events.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/replication/slave/storage/events.py b/synapse/replication/slave/storage/events.py index 797450bc66..a3952506c1 100644 --- a/synapse/replication/slave/storage/events.py +++ b/synapse/replication/slave/storage/events.py @@ -143,3 +143,4 @@ class SlavedEventStore(EventFederationWorkerStore, if relates_to: self.get_relations_for_event.invalidate_many((relates_to,)) self.get_aggregation_groups_for_event.invalidate_many((relates_to,)) + self.get_applicable_edit.invalidate((relates_to,)) |