diff options
author | Erik Johnston <erik@matrix.org> | 2020-03-24 16:52:17 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2020-03-24 16:52:17 +0000 |
commit | bd64b8fcd5074ece79149805b9ecf9ecbd948566 (patch) | |
tree | ee28355927e96697c6c3b4e16471c703aa0bee98 /synapse/replication/tcp/streams/_base.py | |
parent | Move calling http replication out of base stream (diff) | |
download | synapse-bd64b8fcd5074ece79149805b9ecf9ecbd948566.tar.xz |
Fixup push rules stream
Diffstat (limited to '')
-rw-r--r-- | synapse/replication/tcp/streams/_base.py | 2 |
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): |