Fix: ARQ cron second schedule must be set of ints, not string

This commit is contained in:
Agent Zero
2026-07-25 22:07:56 +02:00
parent 3828e1b029
commit 388fbdd109
+1 -1
View File
@@ -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},
),
]