EnexoOnoma
EnexoOnoma

Reputation: 8836

What is the correct expression for a web job in Azure to run every 2 hours?

I set my web job (cron job) on Azure to run every 2 hours like this

0 * */2 * * *

However it runs every minute, for a reason I don't know why.

What is the correct expression for a web job in Azure to run every 2 hours?

Upvotes: 1

Views: 954

Answers (1)

4c74356b41
4c74356b41

Reputation: 72171

Try this:

0 0 */2 * * *

Reference:
https://learn.microsoft.com/en-us/azure/app-service-web/web-sites-create-web-jobs

Upvotes: 5

Related Questions