From dd2b9ead7e67cfea38e0e167bc04d2444f7ba7ea Mon Sep 17 00:00:00 2001 From: Herculino Trotta Date: Sun, 24 Aug 2025 10:41:26 -0300 Subject: [PATCH] fix(common:tasks): remove_old_jobs always failing --- app/apps/common/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/apps/common/tasks.py b/app/apps/common/tasks.py index 1d6203d..db5b866 100644 --- a/app/apps/common/tasks.py +++ b/app/apps/common/tasks.py @@ -23,7 +23,7 @@ async def remove_old_jobs(context, timestamp): return await builtin_tasks.remove_old_jobs( context, max_hours=744, - remove_error=True, + remove_failed=True, remove_cancelled=True, remove_aborted=True, )