summary refs log tree commit diff
path: root/synapse/push/httppusher.py
diff options
context:
space:
mode:
authorMark Haines <mjark@negativecurvature.net>2016-07-29 10:13:01 +0100
committerGitHub <noreply@github.com>2016-07-29 10:13:01 +0100
commita679a01dbe329ba28348ada0c24667b186bec331 (patch)
treecc15550c20eb2369634351a05adcd8c9fe965f7d /synapse/push/httppusher.py
parentMerge pull request #965 from matrix-org/kegan/comment-push-actions-fn (diff)
parentFix SQL to supply arguments in the same order (diff)
downloadsynapse-a679a01dbe329ba28348ada0c24667b186bec331.tar.xz
Merge pull request #966 from matrix-org/markjh/fix_push
Create separate methods for getting messages to push
Diffstat (limited to 'synapse/push/httppusher.py')
-rw-r--r--synapse/push/httppusher.py3
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 )