summary refs log tree commit diff
path: root/synapse/replication/slave
diff options
context:
space:
mode:
authorMark Haines <mark.haines@matrix.org>2016-07-28 20:24:24 +0100
committerMark Haines <mark.haines@matrix.org>2016-07-28 20:24:24 +0100
commit0a7d3cd00f8b7e3ad0ba458c3ab9b40a2496545b (patch)
treebf6554d8ebc3b0a8f1155e85884ada5ad49a138e /synapse/replication/slave
parentMerge pull request #965 from matrix-org/kegan/comment-push-actions-fn (diff)
downloadsynapse-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/replication/slave')
-rw-r--r--synapse/replication/slave/storage/events.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/synapse/replication/slave/storage/events.py b/synapse/replication/slave/storage/events.py
index 369d839464..6a644f1386 100644
--- a/synapse/replication/slave/storage/events.py
+++ b/synapse/replication/slave/storage/events.py
@@ -93,8 +93,11 @@ class SlavedEventStore(BaseSlavedStore):
         StreamStore.__dict__["get_recent_event_ids_for_room"]
     )
 
-    get_unread_push_actions_for_user_in_range = (
-        DataStore.get_unread_push_actions_for_user_in_range.__func__
+    get_unread_push_actions_for_user_in_range_for_http = (
+        DataStore.get_unread_push_actions_for_user_in_range_for_http.__func__
+    )
+    get_unread_push_actions_for_user_in_range_for_email = (
+        DataStore.get_unread_push_actions_for_user_in_range_for_email.__func__
     )
     get_push_action_users_in_range = (
         DataStore.get_push_action_users_in_range.__func__