Make sure max stream ordering only increases

pull/4/merge
David Baker 9 years ago
parent 52d1008661
commit 7b6d519482
  1. 2
      synapse/push/httppusher.py

@ -86,7 +86,7 @@ class HttpPusher(object):
@defer.inlineCallbacks
def on_new_notifications(self, min_stream_ordering, max_stream_ordering):
with Measure(self.clock, "push.on_new_notifications"):
self.max_stream_ordering = max_stream_ordering
self.max_stream_ordering = max(max_stream_ordering, self.max_stream_ordering)
yield self._process()
@defer.inlineCallbacks

Loading…
Cancel
Save