summary refs log tree commit diff
path: root/synapse/push/emailpusher.py
diff options
context:
space:
mode:
authorErik Johnston <erikj@jki.re>2016-10-18 15:27:10 +0100
committerGitHub <noreply@github.com>2016-10-18 15:27:10 +0100
commitf6955db970ec4846639b05ee9e49eef016da77db (patch)
tree86f50a1960352e2b46c4ea645ab5f56f7a5ce0eb /synapse/push/emailpusher.py
parentMerge branch 'release-v0.18.2' of github.com:matrix-org/synapse into develop (diff)
parentFix push notifications for a single unread message (diff)
downloadsynapse-f6955db970ec4846639b05ee9e49eef016da77db.tar.xz
Merge pull request #1174 from matrix-org/erikj/email_push_noop
Reduce redundant database work in email pusher
Diffstat (limited to 'synapse/push/emailpusher.py')
-rw-r--r--synapse/push/emailpusher.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/synapse/push/emailpusher.py b/synapse/push/emailpusher.py
index 6600c9cd55..2eb325c7c7 100644
--- a/synapse/push/emailpusher.py
+++ b/synapse/push/emailpusher.py
@@ -150,6 +150,10 @@ class EmailPusher(object):
 
         soonest_due_at = None
 
+        if not unprocessed:
+            yield self.save_last_stream_ordering_and_success(self.max_stream_ordering)
+            return
+
         for push_action in unprocessed:
             received_at = push_action['received_ts']
             if received_at is None: