summary refs log tree commit diff
path: root/synapse/push/action_generator.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2016-08-19 14:07:27 +0100
committerErik Johnston <erik@matrix.org>2016-08-19 14:29:20 +0100
commitf164fd922024308e702269a881328f7de980e9eb (patch)
tree5df6a0c066441aacaf6a5a14c1bc29aa66dbbee4 /synapse/push/action_generator.py
parentRemove lru option (diff)
downloadsynapse-f164fd922024308e702269a881328f7de980e9eb.tar.xz
Move _bulk_get_push_rules_for_room to storage layer
Diffstat (limited to 'synapse/push/action_generator.py')
-rw-r--r--synapse/push/action_generator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/push/action_generator.py b/synapse/push/action_generator.py
index b2c94bfaac..ed2ccc4dfb 100644
--- a/synapse/push/action_generator.py
+++ b/synapse/push/action_generator.py
@@ -40,7 +40,7 @@ class ActionGenerator:
     def handle_push_actions_for_event(self, event, context):
         with Measure(self.clock, "evaluator_for_event"):
             bulk_evaluator = yield evaluator_for_event(
-                event, self.hs, self.store, context.current_state
+                event, self.hs, self.store, context.state_group, context.current_state
             )
 
         with Measure(self.clock, "action_for_event_by_user"):