summary refs log tree commit diff
path: root/synapse/push
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2017-05-18 16:34:41 +0100
committerErik Johnston <erik@matrix.org>2017-05-18 16:34:44 +0100
commit760625acbaef9ae7032ba5e59e91979f454febef (patch)
tree0905b0c2d5eaf87c06b84fbe9a31385ab545b88a /synapse/push
parentRemove size of push get_rules cache (diff)
downloadsynapse-760625acbaef9ae7032ba5e59e91979f454febef.tar.xz
Make get_if_app_services_interested_in_user faster
Diffstat (limited to 'synapse/push')
-rw-r--r--synapse/push/bulk_push_rule_evaluator.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/synapse/push/bulk_push_rule_evaluator.py b/synapse/push/bulk_push_rule_evaluator.py

index 7f04d5668f..386d7bed81 100644 --- a/synapse/push/bulk_push_rule_evaluator.py +++ b/synapse/push/bulk_push_rule_evaluator.py
@@ -251,9 +251,7 @@ class RulesForRoom(object): if not self.is_mine_id(user_id): continue - if self.store.get_if_app_services_interested_in_user( - user_id, exclusive=True - ): + if self.store.get_if_app_services_interested_in_user(user_id): continue # If a user has left a room we remove their push rule. If they