summary refs log tree commit diff
path: root/synapse/app
diff options
context:
space:
mode:
authorDavid Baker <dave@matrix.org>2016-05-10 18:56:40 +0200
committerDavid Baker <dave@matrix.org>2016-05-10 18:56:40 +0200
commit35b6e6d2a8639dba4e23372dff0be76c4d9a8936 (patch)
treec5ba49334b5521c7552e50f145bbf4b86c1cec31 /synapse/app
parentPass through get_state_groups (diff)
downloadsynapse-35b6e6d2a8639dba4e23372dff0be76c4d9a8936.tar.xz
Pass though _get_state_group_for_events
Diffstat (limited to 'synapse/app')
-rw-r--r--synapse/app/pusher.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/synapse/app/pusher.py b/synapse/app/pusher.py
index 6f5e7a2e3f..d59922422c 100644
--- a/synapse/app/pusher.py
+++ b/synapse/app/pusher.py
@@ -131,6 +131,10 @@ class PusherSlaveStore(
         DataStore.get_state_groups.__func__
     )
 
+    _get_state_group_for_events = (
+        DataStore._get_state_group_for_events.__func__
+    )
+
 
 class PusherServer(HomeServer):