diff options
author | Erik Johnston <erik@matrix.org> | 2017-06-09 16:40:52 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2017-06-09 16:40:52 +0100 |
commit | 80609743440467a69c4bdcd111c60d84f617d6c4 (patch) | |
tree | 423ac506015b9c985a9a9d934463db629fbd829e /synapse/replication | |
parent | Comments (diff) | |
download | synapse-80609743440467a69c4bdcd111c60d84f617d6c4.tar.xz |
Fix replication
Diffstat (limited to 'synapse/replication')
-rw-r--r-- | synapse/replication/slave/storage/events.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/replication/slave/storage/events.py b/synapse/replication/slave/storage/events.py index 6cd3a843df..f0a367aa9b 100644 --- a/synapse/replication/slave/storage/events.py +++ b/synapse/replication/slave/storage/events.py @@ -108,7 +108,7 @@ class SlavedEventStore(BaseSlavedStore): get_current_state_ids = ( StateStore.__dict__["get_current_state_ids"] ) - get_state_group_delta = DataStore.get_state_group_delta.__func__ + get_state_group_delta = StateStore.__dict__["get_state_group_delta"] _get_joined_hosts_cache = RoomMemberStore.__dict__["_get_joined_hosts_cache"] has_room_changed_since = DataStore.has_room_changed_since.__func__ |