diff options
author | David Baker <dave@matrix.org> | 2016-05-10 18:56:40 +0200 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2016-05-10 18:56:40 +0200 |
commit | 35b6e6d2a8639dba4e23372dff0be76c4d9a8936 (patch) | |
tree | c5ba49334b5521c7552e50f145bbf4b86c1cec31 /synapse/app/pusher.py | |
parent | Pass through get_state_groups (diff) | |
download | synapse-35b6e6d2a8639dba4e23372dff0be76c4d9a8936.tar.xz |
Pass though _get_state_group_for_events
Diffstat (limited to 'synapse/app/pusher.py')
-rw-r--r-- | synapse/app/pusher.py | 4 |
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): |