catch_up.html 627 B

1234567891011121314
  1. Every minute, a cron job is checked whether it should run or not.
  2. <pre>*/10 * * * *</pre>
  3. is equivilant of
  4. <pre>0,10,20,30,40,50 * * * *</pre>
  5. and runs every hour at the minutes 0,10,20,30,40,50.
  6. If for some reason (connection congestion, server crash, etc.) that Ultimate Cron cannot launch the job, e.g. 10:30, then normally, the job won't attempted to be launched again until 10:40.
  7. The <em>catch up</em> compensates for this, allowing the job to be launched anyway until a certain time. The <em>Catch up</em> value is in seconds, so if it is set to 300, the job will launch at 10:31-35 if it did not launch at 10:30