BOT Triggering issue

Hi All,

We have to trigger the BOT for half hourly each between 6 to 10 AM and we have written the cron expression for same. Now during execution], BOT is triggering for 6,6.30,7,7.30,8,8.30,9,9.30 AM schedule but not triggering for 10 AM schedule. Why such happening ? Any way/possible solution to resolve such issue.?

Regards,
Shirish

1 Like

it has mentioned like between 6 to 10 thats why 10:00 is not in the list

Cheers @Shirish

but we have to trigger the last 10 AM schedule as well.

ok got it
was the expression mentioned like this, only then 10:30 will be included

0 0/30 6,7,8,9,10,11 ? * * *

Cheers @Shirish

we dont want 10.30 schedule, need only schedule between 6 AM to 10 Am including 10AM schedule.

We need only between 6 to 10 am (including 6 and 10 schedule. dont need 10.30 schedule)

1 Like

Aah fine
0 0/30 6,7,8,9,10 ? * * *

This expression would work as it starts for every thirty minutes from 0 mins

Cheers @Shirish

Hello Pls give a try on the below one!

0 0-59/30 06-10 ? * MON,TUE,WED,THU,FRI *

Every 30 mins ,mins 0 through 59 past hour, between 6am and 10.59am on all working days

Do minor modifications if required

Cheers