fix ExpiringDict caching solution

This commit is contained in:
Kenneth Kehl
2024-07-19 13:58:23 -07:00
parent 8124d981d8
commit 875d378b3d
5 changed files with 73 additions and 5 deletions

View File

@@ -249,6 +249,11 @@ class Config(object):
"schedule": crontab(hour=6, minute=0),
"options": {"queue": QueueNames.PERIODIC},
},
"regenerate-job-cache": {
"task": "regenerate-job-cache",
"schedule": crontab(),
"options": {"queue": QueueNames.PERIODIC},
},
"cleanup-unfinished-jobs": {
"task": "cleanup-unfinished-jobs",
"schedule": crontab(hour=4, minute=5),