diff options
author | Mark Haines <mjark@negativecurvature.net> | 2016-07-29 10:13:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-29 10:13:01 +0100 |
commit | a679a01dbe329ba28348ada0c24667b186bec331 (patch) | |
tree | cc15550c20eb2369634351a05adcd8c9fe965f7d /synapse/replication | |
parent | Merge pull request #965 from matrix-org/kegan/comment-push-actions-fn (diff) | |
parent | Fix SQL to supply arguments in the same order (diff) | |
download | synapse-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/replication')
-rw-r--r-- | synapse/replication/slave/storage/events.py | 7 |
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__ |