Reputation: 499
I have to schedule azure function to run each hour but not at full hours but each time 10 minutes after a full hour. So 00:10 first run and next one 01:10, 02:10 ... 23:10. Any help will be appreciated.
Upvotes: -1
Views: 924
Reputation: 29940
For this kind of timer trigger azure function, you should specify the cron expression as below:
0 10 0-23 * * *
For more details, you can learn it from this article.
Upvotes: 1