From 7c1fcb68a61cd8a295923791bcc2c9b6feb85955 Mon Sep 17 00:00:00 2001 From: Andrew Morgan Date: Fri, 8 Nov 2019 15:10:51 +0000 Subject: Remove any content pulling --- synapse/replication/tcp/streams/_base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'synapse/replication/tcp') diff --git a/synapse/replication/tcp/streams/_base.py b/synapse/replication/tcp/streams/_base.py index d7a6850789..afa31d43c8 100644 --- a/synapse/replication/tcp/streams/_base.py +++ b/synapse/replication/tcp/streams/_base.py @@ -89,7 +89,7 @@ TagAccountDataStreamRow = namedtuple( ) AccountDataStreamRow = namedtuple( "AccountDataStream", - ("user_id", "room_id", "data_type", "data"), # str # str # str # dict + ("user_id", "room_id", "data_type"), # str # str # str ) GroupsStreamRow = namedtuple( "GroupsStreamRow", @@ -421,7 +421,7 @@ class AccountDataStream(Stream): results = list(room_results) results.extend( (stream_id, user_id, None, account_data_type) - for stream_id, user_id, account_data_type, content in global_results + for stream_id, user_id, account_data_type in global_results ) return results -- cgit 1.5.1