mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-06-18 06:29:18 -04:00
Move the execution of the retention purge_jobs to the main worker (#13632)
Fixes #9927 Signed-off-by: Brad Murray brad@beeper.com
This commit is contained in:
parent
978666a088
commit
967d7bad6c
2 changed files with 3 additions and 4 deletions
|
@ -159,11 +159,9 @@ class PaginationHandler:
|
|||
self._retention_allowed_lifetime_max = (
|
||||
hs.config.retention.retention_allowed_lifetime_max
|
||||
)
|
||||
self._is_master = hs.config.worker.worker_app is None
|
||||
|
||||
if (
|
||||
hs.config.worker.run_background_tasks
|
||||
and hs.config.retention.retention_enabled
|
||||
):
|
||||
if hs.config.retention.retention_enabled and self._is_master:
|
||||
# Run the purge jobs described in the configuration file.
|
||||
for job in hs.config.retention.retention_purge_jobs:
|
||||
logger.info("Setting up purge job with config: %s", job)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue