Assert that stream replicated stream positions are ints

This commit is contained in:
Mark Haines 2016-05-13 17:33:44 +01:00
parent 077468f6a9
commit 0466454b00
3 changed files with 7 additions and 7 deletions

View file

@ -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)