Schedule: */5 * * * * *
EMail Notifications
Last Run: 11:48 Next Run: 11:50
/ 5 gives difference 2 minutes
Schedule: */7 * * * * *
EMail Notifications
Last Run: 11:48 Next Run: 11:49
/7 gives difference 1 minute
Schedule: */5 * * * * *
EMail Notifications
Last Run: 11:48 Next Run: 11:50
/ 5 gives difference 2 minutes
Schedule: */7 * * * * *
EMail Notifications
Last Run: 11:48 Next Run: 11:49
/7 gives difference 1 minute
It’s rather odd, the cron times seems to be correct ie every 5min and every 7 min.
Could you show us the ‘Last Duration’ column?
I wonder if for some reason the task are taking longer than they should and therefore the last run is logged with few minutes delay.
Its running late - /7 should be run at 7, 14, 21, 28, etc, etc ? Because it didn’t run until 18, it means you only have 3 minutes.
Are you using Docker? If not, how often do you have the script executing?
I do not use Docker.
Current setting:
Start 22.03.2017 19:03:00
Repeat every 5 minutes
I think that explains it then? You want it to run every 7th minute, which means it should run at 7, 14, 21, etc. The script is being called at 3,8,13,18,etc
So i’ll put a * where the event would run:
7, 14, 21, 28
3, 8*, 13, 18*
If you run your task every 1 minute instead, you’d expect it to follow the CRON schedules you’ve set.
All right. I understand.
Had thought the time from the cron is added to Last Run.
Thanks for your help.
I think that might happen if you remove the / and make it just 7?
Script runs now every minute.
*/7 * * * * * Last Run: 2017-04-05 10:43 Next Run: 2017-04-05 10:49 / 1 minute difference
*/5 * * * * * Last Run: 2017-04-05 10:46 Next Run: 2017-04-05 10:50 / 1 minute difference
Is not a real problem.
Oh dear - that is a bug
Patch in the above.