summary refs log tree commit diff
path: root/synapse/replication/resource.py
diff options
context:
space:
mode:
authorMark Haines <mark.haines@matrix.org>2016-04-27 15:38:43 +0100
committerMark Haines <mark.haines@matrix.org>2016-04-27 15:38:43 +0100
commit8a656664544fbc23db618aa855cc61ac54d9afeb (patch)
treef8b0b43feaac16f317c8826d98f7a5b1ebe34f24 /synapse/replication/resource.py
parentActually start the pusher daemon (diff)
downloadsynapse-8a656664544fbc23db618aa855cc61ac54d9afeb.tar.xz
Fix backfill replication to advance the stream correctly
Diffstat (limited to 'synapse/replication/resource.py')
-rw-r--r--synapse/replication/resource.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/replication/resource.py b/synapse/replication/resource.py
index e5c9a53929..149fc4c650 100644
--- a/synapse/replication/resource.py
+++ b/synapse/replication/resource.py
@@ -382,7 +382,7 @@ class _Writer(object):
             position = rows[-1][0]
 
         self.streams[name] = {
-            "position": str(position),
+            "position": position if type(position) is int else str(position),
             "field_names": fields,
             "rows": rows,
         }