summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2016-08-26 09:57:32 +0100
committerErik Johnston <erik@matrix.org>2016-08-26 09:57:32 +0100
commit50943ab9423602214544f8c35b1fec8a9700802d (patch)
tree94cde0cb1a21eeaa68534abcd767be7f5a6a4e9a /synapse
parentMerge branch 'develop' of github.com:matrix-org/synapse into erikj/state_ids (diff)
downloadsynapse-50943ab9423602214544f8c35b1fec8a9700802d.tar.xz
Add new state storage funcs to replication
Diffstat (limited to 'synapse')
-rw-r--r--synapse/replication/slave/storage/events.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/synapse/replication/slave/storage/events.py b/synapse/replication/slave/storage/events.py
index f4f31f2d27..3a71e7b292 100644
--- a/synapse/replication/slave/storage/events.py
+++ b/synapse/replication/slave/storage/events.py
@@ -120,6 +120,9 @@ class SlavedEventStore(BaseSlavedStore):
     get_state_for_event = DataStore.get_state_for_event.__func__
     get_state_for_events = DataStore.get_state_for_events.__func__
     get_state_groups = DataStore.get_state_groups.__func__
+    get_state_groups_ids = DataStore.get_state_groups_ids.__func__
+    get_state_ids_for_event = DataStore.get_state_ids_for_event.__func__
+    get_state_ids_for_events = DataStore.get_state_ids_for_events.__func__
     get_recent_events_for_room = DataStore.get_recent_events_for_room.__func__
     get_room_events_stream_for_rooms = (
         DataStore.get_room_events_stream_for_rooms.__func__