mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 12:26:02 -04:00
Assert that stream replicated stream positions are ints
This commit is contained in:
parent
077468f6a9
commit
0466454b00
3 changed files with 7 additions and 7 deletions
|
@ -43,10 +43,10 @@ class SlavedPusherStore(BaseSlavedStore):
|
|||
def process_replication(self, result):
|
||||
stream = result.get("pushers")
|
||||
if stream:
|
||||
self._pushers_id_gen.advance(stream["position"])
|
||||
self._pushers_id_gen.advance(int(stream["position"]))
|
||||
|
||||
stream = result.get("deleted_pushers")
|
||||
if stream:
|
||||
self._pushers_id_gen.advance(stream["position"])
|
||||
self._pushers_id_gen.advance(int(stream["position"]))
|
||||
|
||||
return super(SlavedPusherStore, self).process_replication(result)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue