CRON job does not work for a 30 minute step

I set up the CRON JOB to run every 30 minutes between 11 and 4pm. But it only runs every hour.

Hi @vadimgm , could you use

*/30 11-16 * * *

instead? The 0/30 syntax isn’t supported by all cron libraries (including the one we use), and that resolves to 0, which means it’s equivalent to telling it to run once an hour:

0 11-16 * * *

Let me know if that helps

Thank you! Works fine!