Hello everyone! If anyone has encountered this, please help me understand why the scheduled trigger works like this.
I set the interval for launching - every 50 minutes.
Where did the second triggering after 10 minutes come from?
In my understanding, it should trigger like this
at 9:00 - 9:50 - 10:40 - 11:30 … i.e. 50 minutes between triggering
Or am I not understanding something about the mechanism of this node?!
I would understand if the trigger was triggered at 50 minutes every hour
9:50 - 10:50 - 10:50 and so on
I don’t understand why it triggers at both 9:50 and 10:00
I think I figured it out
this is a standard cron job
*/40 * * * *
The */40 field means: starting from minute 0, run the task every 40 minutes within the current hour. That is, cron will run the command at:
00:00, 00:40, 01:00, 01:40, 02:00, 02:40, …, 23:00, 23:40