diff options
author | Mark Haines <mark.haines@matrix.org> | 2016-05-13 17:33:44 +0100 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2016-05-13 17:33:44 +0100 |
commit | 0466454b003860dba23363f882916eb4f7d27648 (patch) | |
tree | 2025383a5c338dd73b06e7e911ef8ef5a365af05 /synapse/replication/slave/storage/pushers.py | |
parent | Merge pull request #780 from matrix-org/dbkr/email_notifs_on_pusher (diff) | |
download | synapse-0466454b003860dba23363f882916eb4f7d27648.tar.xz |
Assert that stream replicated stream positions are ints
Diffstat (limited to 'synapse/replication/slave/storage/pushers.py')
-rw-r--r-- | synapse/replication/slave/storage/pushers.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/replication/slave/storage/pushers.py b/synapse/replication/slave/storage/pushers.py index 8faddb2595..d88206b3bb 100644 --- a/synapse/replication/slave/storage/pushers.py +++ b/synapse/replication/slave/storage/pushers.py @@ -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) |