We had one triggered web job running every 5 minutes that would pull the data from SQL On Prem DB and create lead records in CRM.
During testing we wanted to stop the running web job.
To do go to Application Settings for the App Service. Add WEBJOB_STOPPED and WEBJOBS_DISABLE_SCHEDULE setting with value 1.
We’d see our web job stop running.
Another option is to kill the process itself
Open à
https://[appname].scm.azurewebsites.net/ProcessExplorer
Get all the details here
https://github.com/projectkudu/kudu/wiki/WebJobs
Hope it helps..
Hi,
WEBJOB_STOPPED in your text should be WEBJOBS_STOPPED .
LikeLike
thanks Tobias.
LikeLike
Thanks
LikeLiked by 1 person
Thank you. It worked for me. By killing the process.
LikeLiked by 1 person