diff options
author | Brendan Abolivier <babolivier@matrix.org> | 2020-07-31 13:58:42 +0100 |
---|---|---|
committer | Brendan Abolivier <babolivier@matrix.org> | 2020-07-31 13:58:42 +0100 |
commit | 79d991eff060abaa074ef23201f0e68cc8228e7e (patch) | |
tree | d491725572e055560779465d951f0ccc8bb0ce4d /synapse/storage | |
parent | Merge branch 'develop' of github.com:matrix-org/synapse into babolivier/new_p... (diff) | |
download | synapse-79d991eff060abaa074ef23201f0e68cc8228e7e.tar.xz |
Fix cache invalidation calls
Diffstat (limited to 'synapse/storage')
-rw-r--r-- | synapse/storage/data_stores/main/push_rule.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/data_stores/main/push_rule.py b/synapse/storage/data_stores/main/push_rule.py index 861050814d..85cd24ce72 100644 --- a/synapse/storage/data_stores/main/push_rule.py +++ b/synapse/storage/data_stores/main/push_rule.py @@ -768,7 +768,7 @@ class PushRuleStore(PushRulesWorkerStore): self.db.simple_insert_txn(txn, "push_rules_stream", values=values) - txn.call_after(self.get_push_rules_for_user.invalidate, (user_id,)) + txn.call_after(self._get_push_rules_for_user.invalidate, (user_id,)) txn.call_after(self.get_push_rules_enabled_for_user.invalidate, (user_id,)) txn.call_after( self.push_rules_stream_cache.entity_has_changed, user_id, stream_id |