summary refs log tree commit diff
path: root/synapse/replication
diff options
context:
space:
mode:
authorErik Johnston <erikj@jki.re>2017-06-12 09:49:51 +0100
committerGitHub <noreply@github.com>2017-06-12 09:49:51 +0100
commita837765e8c3fa31d92b842baae43c22208b9ec07 (patch)
tree330cacdc5ac421c3b4923a3d4380fbf980f72af5 /synapse/replication
parentMerge pull request #2269 from matrix-org/erikj/cache_state_delta (diff)
parentTweak SQL (diff)
downloadsynapse-a837765e8c3fa31d92b842baae43c22208b9ec07.tar.xz
Merge pull request #2266 from matrix-org/erikj/host_in_room
Change is_host_joined to use current_state table
Diffstat (limited to 'synapse/replication')
-rw-r--r--synapse/replication/slave/storage/events.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/synapse/replication/slave/storage/events.py b/synapse/replication/slave/storage/events.py
index f0a367aa9b..7034f48b50 100644
--- a/synapse/replication/slave/storage/events.py
+++ b/synapse/replication/slave/storage/events.py
@@ -154,7 +154,6 @@ class SlavedEventStore(BaseSlavedStore):
         DataStore.get_room_events_stream_for_rooms.__func__
     )
     is_host_joined = DataStore.is_host_joined.__func__
-    _is_host_joined = RoomMemberStore.__dict__["_is_host_joined"]
     get_stream_token_for_event = DataStore.get_stream_token_for_event.__func__
 
     _set_before_and_after = staticmethod(DataStore._set_before_and_after)