diff options
author | Erik Johnston <erik@matrix.org> | 2022-06-17 11:58:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-17 10:58:00 +0000 |
commit | 5ef05c70c30ec06376c48f443c5722fbf5dd2aa0 (patch) | |
tree | 5225d2b1852b91b9e693d60c76d36e6c3b02e34d /synapse | |
parent | Use new `device_list_changes_in_room` table when getting device list changes ... (diff) | |
download | synapse-5ef05c70c30ec06376c48f443c5722fbf5dd2aa0.tar.xz |
Rotate notifications more frequently (#13096)
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/storage/databases/main/event_push_actions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/databases/main/event_push_actions.py b/synapse/storage/databases/main/event_push_actions.py index ae705889a5..10a7962382 100644 --- a/synapse/storage/databases/main/event_push_actions.py +++ b/synapse/storage/databases/main/event_push_actions.py @@ -148,7 +148,7 @@ class EventPushActionsWorkerStore(ReceiptsWorkerStore, EventsWorkerStore, SQLBas 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( |