summary refs log tree commit diff
path: root/synapse/replication/tcp/streams/_base.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2020-03-24 16:52:17 +0000
committerErik Johnston <erik@matrix.org>2020-03-24 16:52:17 +0000
commitbd64b8fcd5074ece79149805b9ecf9ecbd948566 (patch)
treeee28355927e96697c6c3b4e16471c703aa0bee98 /synapse/replication/tcp/streams/_base.py
parentMove calling http replication out of base stream (diff)
downloadsynapse-bd64b8fcd5074ece79149805b9ecf9ecbd948566.tar.xz
Fixup push rules stream
Diffstat (limited to '')
-rw-r--r--synapse/replication/tcp/streams/_base.py2
1 files changed, 1 insertions, 1 deletions
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):