fix: trigger legacy tasks manager every 5m (#2987)
### Description This ensures that when the LibreTime interface is not used for a long time, we still have the task manager run essential tasks for the schedule. Related to #2670
This commit is contained in:
parent
bcaa77ff3c
commit
7040d0e4bd
6 changed files with 31 additions and 0 deletions
|
@ -20,6 +20,7 @@ CELERY_RESULT_PERSISTENT = True # Persist through a broker restart
|
|||
CELERY_TASK_RESULT_EXPIRES = 900 # Expire task results after 15 minutes
|
||||
CELERY_RESULT_EXCHANGE = "celeryresults" # Default exchange - needed due to php-celery
|
||||
CELERY_QUEUES = (
|
||||
Queue("celery", exchange=Exchange("celery"), routing_key="celery"),
|
||||
Queue("podcast", exchange=Exchange("podcast"), routing_key="podcast"),
|
||||
Queue(exchange=Exchange("celeryresults"), auto_delete=True),
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue