From 388fbdd10949c7edf382a362dc2d39d8b560518c Mon Sep 17 00:00:00 2001 From: Agent Zero Date: Sat, 25 Jul 2026 22:07:56 +0200 Subject: [PATCH] Fix: ARQ cron second schedule must be set of ints, not string --- app/core/worker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/core/worker.py b/app/core/worker.py index 258cc96..2525f2b 100644 --- a/app/core/worker.py +++ b/app/core/worker.py @@ -184,6 +184,6 @@ class WorkerSettings: # Outbox processor — every 5 seconds, guarded by distributed lock cron( _wrap_cron_with_lock("process_outbox", process_outbox_job, ttl_seconds=30), - second="*/5", + second={0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55}, ), ]