You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The issue is that 0 5/10 * * * * itself is not a properly formatted cron schedule expression, at least when validated with a website called crontab.guru.
I suspect it should actually be 5/10 * * * *, but then again this cannot be set.
So changing an existing cron schedule makes it impossible to go back…
The text was updated successfully, but these errors were encountered:
Maybe I missed something, but it seems like I can't set a cron schedule that includes a forward slash like so:
this should execute the cronjob at every 10th minute, so at :00, :10, :20, :30, :40 and :50.
I used the following command to update the crontask:
and got the following error:
Error: Schedule format should be same as Linux cron or schedule helper syntax(Check help for this)
Incidentally, it is not possible to set multiple minutes either:
The interesting part is when it comes to reading existing cronjobs. Running
ee cron list website.com
gives the following output:The issue is that
0 5/10 * * * *
itself is not a properly formatted cron schedule expression, at least when validated with a website called crontab.guru.I suspect it should actually be
5/10 * * * *
, but then again this cannot be set.So changing an existing cron schedule makes it impossible to go back…
The text was updated successfully, but these errors were encountered: