diff options
author | Erik Johnston <erik@matrix.org> | 2016-08-26 09:57:32 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-08-26 09:57:32 +0100 |
commit | 50943ab9423602214544f8c35b1fec8a9700802d (patch) | |
tree | 94cde0cb1a21eeaa68534abcd767be7f5a6a4e9a /synapse/replication | |
parent | Merge branch 'develop' of github.com:matrix-org/synapse into erikj/state_ids (diff) | |
download | synapse-50943ab9423602214544f8c35b1fec8a9700802d.tar.xz |
Add new state storage funcs to replication
Diffstat (limited to 'synapse/replication')
-rw-r--r-- | synapse/replication/slave/storage/events.py | 3 |
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__ |