Reputation: 493
I have developed an time trigger azure function which is set to fired every hour but it is not triggering the function as expected. It's triggering behavior is very strange. I am attaching it's executing logs.
The cron expression for triggering the function is as follows:
0 0 * * * *
Anyone has any idea whats wrong with this?
Upvotes: 2
Views: 415
Reputation: 346
Can you try below cron job expression, https://www.freeformatter.com/cron-expression-generator-quartz.html#crongenerator 0 0 * ? * * *
But according to MS documents what you have used is correct. Are you using application insights ? https://codehollow.com/2017/02/azure-functions-time-trigger-cron-cheat-sheet/
https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-timer
Upvotes: 0