Skip to content
Snippets Groups Projects
Unverified Commit 0abb094f authored by Richard van der Hoff's avatar Richard van der Hoff Committed by GitHub
Browse files

bail out early in on_new_receipts if no pushers (#4706)

parent 6d65659b
No related branches found
No related tags found
No related merge requests found
Avoid some redundant work when processing read receipts
......@@ -140,6 +140,10 @@ class PusherPool:
@defer.inlineCallbacks
def on_new_notifications(self, min_stream_id, max_stream_id):
if not self.pushers:
# nothing to do here.
return
try:
users_affected = yield self.store.get_push_action_users_in_range(
min_stream_id, max_stream_id
......@@ -155,6 +159,10 @@ class PusherPool:
@defer.inlineCallbacks
def on_new_receipts(self, min_stream_id, max_stream_id, affected_room_ids):
if not self.pushers:
# nothing to do here.
return
try:
# Need to subtract 1 from the minimum because the lower bound here
# is not inclusive
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment