docs: Ofelia requires 6-field cron expressions, not 5 #1
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "docs/ofelia-6-field-cron"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Why
Ofelia uses a 6-field cron parser where the first field is seconds, not a standard 5-field expression. Passing
"0 3 * * *"is silently misread as seconds=0, minutes=3, hours=*— which fires every hour at :03 rather than daily at 3am.This bit us in
stack-homewhere the z2m nightly restart ran 24×/day for weeks before we spotted it in the Ofelia logs.Change
Added a bullet to the Common gotchas section documenting the correct format and explaining why 5-field expressions fail silently.