diff options
author | Mark Haines <mark.haines@matrix.org> | 2016-07-28 20:24:24 +0100 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2016-07-28 20:24:24 +0100 |
commit | 0a7d3cd00f8b7e3ad0ba458c3ab9b40a2496545b (patch) | |
tree | bf6554d8ebc3b0a8f1155e85884ada5ad49a138e /synapse/push/httppusher.py | |
parent | Merge pull request #965 from matrix-org/kegan/comment-push-actions-fn (diff) | |
download | synapse-0a7d3cd00f8b7e3ad0ba458c3ab9b40a2496545b.tar.xz |
Create separate methods for getting messages to push
for the email and http pushers rather than trying to make a single method that will work with their conflicting requirements. The http pusher needs to get the messages in ascending stream order, and doesn't want to miss a message. The email pusher needs to get the messages in descending timestamp order, and doesn't mind if it misses messages.
Diffstat (limited to 'synapse/push/httppusher.py')
-rw-r--r-- | synapse/push/httppusher.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/push/httppusher.py b/synapse/push/httppusher.py index 2acc6cc214..9a7db61220 100644 --- a/synapse/push/httppusher.py +++ b/synapse/push/httppusher.py @@ -141,7 +141,8 @@ class HttpPusher(object): run once per pusher. """ - unprocessed = yield self.store.get_unread_push_actions_for_user_in_range( + fn = self.store.get_unread_push_actions_for_user_in_range_for_http + unprocessed = yield fn( self.user_id, self.last_stream_ordering, self.max_stream_ordering ) |