summary refs log tree commit diff
path: root/synapse/storage
diff options
context:
space:
mode:
authorBrendan Abolivier <babolivier@matrix.org>2020-07-31 13:58:42 +0100
committerBrendan Abolivier <babolivier@matrix.org>2020-07-31 13:58:42 +0100
commit79d991eff060abaa074ef23201f0e68cc8228e7e (patch)
treed491725572e055560779465d951f0ccc8bb0ce4d /synapse/storage
parentMerge branch 'develop' of github.com:matrix-org/synapse into babolivier/new_p... (diff)
downloadsynapse-79d991eff060abaa074ef23201f0e68cc8228e7e.tar.xz
Fix cache invalidation calls
Diffstat (limited to 'synapse/storage')
-rw-r--r--synapse/storage/data_stores/main/push_rule.py2
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