I'm working on azure function time trigger using visual studio. I have set cron expression "TimerTrigger("0 1 * * *")" to run my azure function every day at 1 am. after running the function locally it is showing correct 'next 5 occurrences'

but after deploying the azure function on azure portal is showing 'invalid cron expression'
 
 
what can be the issue?
You're missing a "0", the correct one should be "0 0 1 * * * ".
A CRON expression includes six fields:
{second} {minute} {hour} {day} {month} {day-of-week}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With