Make sure max stream ordering only increases

This commit is contained in:
David Baker 2016-04-08 14:08:16 +01:00
parent 52d1008661
commit 7b6d519482

View File

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