Error message
When this error occurs
Whenrefresh.trigger is "cron", the cron_expression field must contain a valid 5-field cron expression. This error is raised when the expression cannot be parsed.
Example: request that triggers this error
Cron expression format
*, ,, -, /, ?, L, W, LW, #, and nicknames (@daily, @hourly, etc.). All times are UTC.
How to fix
Provide a valid cron expression:| Expression | Meaning |
|---|---|
0 0 * * * | Every day at midnight UTC |
0 3 * * 1 | Every Monday at 03:00 UTC |
*/15 * * * * | Every 15 minutes |
0 0 1 * * | First day of every month at midnight |
0 6 * * 1-5 | Weekdays at 06:00 UTC |
"trigger": "on_update" or "trigger": "manual" instead.
