ui polish and importer logging tuning

This commit is contained in:
Bryan Van Deusen
2026-01-28 09:36:59 -05:00
parent 0bf1961175
commit d0fcde38e8
12 changed files with 110 additions and 133 deletions
+5
View File
@@ -89,6 +89,11 @@ def make_celery(app=None):
'task': 'app.tasks.scan.recover_interrupted_tasks',
'schedule': 300, # Every 5 minutes
},
'cleanup-old-tasks': {
'task': 'app.tasks.scan.cleanup_old_tasks',
'schedule': 86400, # Once per day
'args': (7,), # Keep tasks for 7 days
},
},
)