mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-16 04:23:50 +01:00
Less aggressive timers
This commit is contained in:
parent
095b45c165
commit
ce3c8df6df
1 changed files with 2 additions and 2 deletions
|
@ -48,7 +48,7 @@ class EventPushActionsStore(SQLBaseStore):
|
||||||
)
|
)
|
||||||
|
|
||||||
self._doing_notif_rotation = False
|
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):
|
def _set_push_actions_for_event_and_users_txn(self, txn, event, tuples):
|
||||||
"""
|
"""
|
||||||
|
@ -594,7 +594,7 @@ class EventPushActionsStore(SQLBaseStore):
|
||||||
)
|
)
|
||||||
if caught_up:
|
if caught_up:
|
||||||
break
|
break
|
||||||
yield sleep(1)
|
yield sleep(5)
|
||||||
finally:
|
finally:
|
||||||
self._doing_notif_rotation = False
|
self._doing_notif_rotation = False
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue