Skip to content
Snippets Groups Projects
Commit ce3c8df6 authored by Erik Johnston's avatar Erik Johnston
Browse files

Less aggressive timers

parent 095b45c1
No related branches found
No related tags found
No related merge requests found
......@@ -48,7 +48,7 @@ class EventPushActionsStore(SQLBaseStore):
)
self._doing_notif_rotation = False
self._clock.looping_call(self._rotate_notifs, 60 * 1000)
self._clock.looping_call(self._rotate_notifs, 30 * 60 * 1000)
def _set_push_actions_for_event_and_users_txn(self, txn, event, tuples):
"""
......@@ -594,7 +594,7 @@ class EventPushActionsStore(SQLBaseStore):
)
if caught_up:
break
yield sleep(1)
yield sleep(5)
finally:
self._doing_notif_rotation = False
......
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