diff options
author | Erik Johnston <erik@matrix.org> | 2020-09-09 16:19:22 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2020-09-09 16:19:22 +0100 |
commit | dc9dcdbd59d4f839c7a96780f7464460fae27851 (patch) | |
tree | 1c86319735b99474bc6a3a37b5d694d8f03f372f /synapse/push/httppusher.py | |
parent | Fixup pusher pool notifications (diff) | |
download | synapse-dc9dcdbd59d4f839c7a96780f7464460fae27851.tar.xz |
Revert "Fixup pusher pool notifications"
This reverts commit e7fd336a53a4ca489cdafc389b494d5477019dc0.
Diffstat (limited to 'synapse/push/httppusher.py')
-rw-r--r-- | synapse/push/httppusher.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/push/httppusher.py b/synapse/push/httppusher.py index 26706bf3e1..f21fa9b659 100644 --- a/synapse/push/httppusher.py +++ b/synapse/push/httppusher.py @@ -114,7 +114,7 @@ class HttpPusher: if should_check_for_notifs: self._start_processing() - def on_new_notifications(self, max_stream_ordering): + def on_new_notifications(self, min_stream_ordering, max_stream_ordering): self.max_stream_ordering = max( max_stream_ordering, self.max_stream_ordering or 0 ) |