Disable a Triggered Azure WebJob

可紊 提交于 2019-12-06 08:51:40

问题


I've got a webhook-triggered Azure WebJob. For... reasons, I do not have control over the system that is sending the webhooks. One webhook per day is sent. It is the only WebJob hosted by the WebApp.

During testing I wanted to disable this WebJob, so I stopped the WebApp. Much to my surprise, the WebJob ran even though the WebApp was disabled.

So my question is two-fold:

  1. Is the ability to trigger a WebJob while a WebApp is disabled intentional, or did I encounter some sort of bug?
  2. If this is intentional, is there a way to disable this job being triggered via the Azure portal?

If the only solution to my problem is to have the WebJob check a config value to determine whether to run or not, that will do. I just think there has to be a way to disable a WebJob through the portal that I'm missing.


回答1:


Stopping the app does not stop the scm site that runs WebJobs. There is a more advanced way that you can stop it at API level, by setting state=Stopped and scmSiteAlsoStopped=true on the site object. This can be done using Resource Explorer.

See https://github.com/projectkudu/kudu/wiki/Full-stopping-a-Web-App for more detailed steps.




回答2:


You can also set the WEBJOBS_STOPPED setting in app settings, especially if publishing to a dev slot for example.

https://github.com/projectkudu/kudu/wiki/WebJobs



来源:https://stackoverflow.com/questions/46354060/disable-a-triggered-azure-webjob

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!