From bd64b8fcd5074ece79149805b9ecf9ecbd948566 Mon Sep 17 00:00:00 2001 From: Erik Johnston Date: Tue, 24 Mar 2020 16:52:17 +0000 Subject: Fixup push rules stream --- synapse/replication/tcp/streams/_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'synapse/replication/tcp/streams/_base.py') diff --git a/synapse/replication/tcp/streams/_base.py b/synapse/replication/tcp/streams/_base.py index d64cbc5cc8..2699e466bc 100644 --- a/synapse/replication/tcp/streams/_base.py +++ b/synapse/replication/tcp/streams/_base.py @@ -280,7 +280,7 @@ class PushRulesStream(Stream): to_token = rows[-1][0] limited = True - return [(row[0], row[2]) for row in rows], to_token, limited + return [(row[0], (row[2],)) for row in rows], to_token, limited class PushersStream(Stream): -- cgit 1.4.1