diff options
author | Erik Johnston <erik@matrix.org> | 2020-09-09 16:17:50 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2020-09-09 16:17:50 +0100 |
commit | e7fd336a53a4ca489cdafc389b494d5477019dc0 (patch) | |
tree | 63ee223a5cc34448c895ea152635aba2a2296f5b /synapse/push/emailpusher.py | |
parent | blacklist MSC2753 sytests until it's implemented in synapse (#8285) (diff) | |
download | synapse-e7fd336a53a4ca489cdafc389b494d5477019dc0.tar.xz |
Fixup pusher pool notifications
Diffstat (limited to 'synapse/push/emailpusher.py')
-rw-r--r-- | synapse/push/emailpusher.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/push/emailpusher.py b/synapse/push/emailpusher.py index b7ea4438e0..28bd8ab748 100644 --- a/synapse/push/emailpusher.py +++ b/synapse/push/emailpusher.py @@ -91,7 +91,7 @@ class EmailPusher: pass self.timed_call = None - def on_new_notifications(self, min_stream_ordering, max_stream_ordering): + def on_new_notifications(self, max_stream_ordering): if self.max_stream_ordering: self.max_stream_ordering = max( max_stream_ordering, self.max_stream_ordering |