forked from MirrorHub/synapse
Make sure max stream ordering only increases
This commit is contained in:
parent
52d1008661
commit
7b6d519482
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue