mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 12:16:09 -04:00
Fix backfill replication to advance the stream correctly
This commit is contained in:
parent
71df327190
commit
8a65666454
2 changed files with 3 additions and 3 deletions
|
@ -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,
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue