diff options
author | Erik Johnston <erik@matrix.org> | 2017-02-02 15:02:03 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2017-02-02 15:02:03 +0000 |
commit | 0f3e296cb7d63aa8b4cfcaa54a0b2a63fbe7c943 (patch) | |
tree | 83e63ce93687f063d0c442d638bcbb36d07a85d2 /synapse/replication | |
parent | Comment (diff) | |
download | synapse-0f3e296cb7d63aa8b4cfcaa54a0b2a63fbe7c943.tar.xz |
Fix 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 15a025a019..d72ff6055c 100644 --- a/synapse/replication/slave/storage/events.py +++ b/synapse/replication/slave/storage/events.py @@ -73,6 +73,9 @@ class SlavedEventStore(BaseSlavedStore): # to reach inside the __dict__ to extract them. get_rooms_for_user = RoomMemberStore.__dict__["get_rooms_for_user"] get_users_in_room = RoomMemberStore.__dict__["get_users_in_room"] + get_users_who_share_room_with_user = ( + RoomMemberStore.__dict__["get_users_who_share_room_with_user"] + ) get_latest_event_ids_in_room = EventFederationStore.__dict__[ "get_latest_event_ids_in_room" ] |