Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Rotate notifications more frequently (#13096)
Browse files Browse the repository at this point in the history
  • Loading branch information
erikjohnston authored Jun 17, 2022
1 parent 5099b5e commit 5ef05c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog.d/13096.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Reduce DB usage of `/sync` when a large number of unread messages have recently been sent in a room.
2 changes: 1 addition & 1 deletion synapse/storage/databases/main/event_push_actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def __init__(
self._doing_notif_rotation = False
if hs.config.worker.run_background_tasks:
self._rotate_notif_loop = self._clock.looping_call(
self._rotate_notifs, 30 * 60 * 1000
self._rotate_notifs, 30 * 1000
)

self.db_pool.updates.register_background_index_update(
Expand Down

0 comments on commit 5ef05c7

Please sign in to comment.