mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-02 20:59:12 +01:00
Merge pull request #755 from matrix-org/markjh/right_direction
Fix backfill replication to advance the stream correctly
This commit is contained in:
commit
21d188bf95
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,
|
||||
}
|
||||
|
|
|
@ -118,7 +118,7 @@ class SlavedEventStore(BaseSlavedStore):
|
|||
def stream_positions(self):
|
||||
result = super(SlavedEventStore, self).stream_positions()
|
||||
result["events"] = self._stream_id_gen.get_current_token()
|
||||
result["backfill"] = self._backfill_id_gen.get_current_token()
|
||||
result["backfill"] = -self._backfill_id_gen.get_current_token()
|
||||
return result
|
||||
|
||||
def process_replication(self, result):
|
||||
|
@ -136,7 +136,7 @@ class SlavedEventStore(BaseSlavedStore):
|
|||
|
||||
stream = result.get("backfill")
|
||||
if stream:
|
||||
self._backfill_id_gen.advance(stream["position"])
|
||||
self._backfill_id_gen.advance(-stream["position"])
|
||||
for row in stream["rows"]:
|
||||
self._process_replication_row(
|
||||
row, backfilled=True, state_resets=state_resets
|
||||
|
|
Loading…
Reference in a new issue