0
votes

I'm using Azure App Service Web App (on Free plan) to host my small project. In it I use a Quartz.Net scheduler to run task based on my rule. What I noticed is that if I don't visit web app for some amount of time (like 30-40 minutes) the Quartz stops performing it's tasks. My guess is that Azure stops the Web app if noone visits it after some amount of time, but I couldn't find any proofs of this neither in documentation, nor in description of pricing plans.

1

1 Answers

0
votes

Thats because there is a setting on Azure -> application settings called 'Always on', on FREE plan you can't turn it on (only on BASIC plan and above.) image of app settings on Azure WebApp

Had same issue with my web app.