Set a cron from Sunday - Thursday
Im trying to set up a cron that runs from Sun - Thu like so 0 14 * * 0-4 but the app is not letting me.
Any ideas why ?
0
-
Official comment
Hi,
I understand that you want your cronjob to run from Sunday to Thursday, i.e. all weekdays except Friday and Saturday.
Unlike crontab syntax, we do not support 0 as Sunday in weekday values. Sunday is stored as 7 in our database.
So you should enter the Time Pattern like this instead:
0 14 * * 1-4,7
I hope this helps.
Please sign in to leave a comment.
Comments
1 comment