summary refs log tree commit diff
path: root/synapse/replication/slave
diff options
context:
space:
mode:
authorDavid Baker <dave@matrix.org>2016-05-10 18:43:40 +0200
committerDavid Baker <dave@matrix.org>2016-05-10 18:43:40 +0200
commit5f46be19a78f1811eee9a7f8fd9fde70563fdfe9 (patch)
treed04a3c22109b3c01836689431179ef998a5f312b /synapse/replication/slave
parentPass through _get_event_txn (diff)
downloadsynapse-5f46be19a78f1811eee9a7f8fd9fde70563fdfe9.tar.xz
Pass through get_events to pusher too
Diffstat (limited to 'synapse/replication/slave')
-rw-r--r--synapse/replication/slave/storage/events.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/replication/slave/storage/events.py b/synapse/replication/slave/storage/events.py
index 56e8b9d906..7ba7a6f6e4 100644
--- a/synapse/replication/slave/storage/events.py
+++ b/synapse/replication/slave/storage/events.py
@@ -83,6 +83,7 @@ class SlavedEventStore(BaseSlavedStore):
         DataStore.get_push_action_users_in_range.__func__
     )
     get_event = DataStore.get_event.__func__
+    get_events = DataStore.get_events.__func__
     get_current_state = DataStore.get_current_state.__func__
     get_current_state_for_key = DataStore.get_current_state_for_key.__func__
     get_rooms_for_user_where_membership_is = (