Disable a Triggered Azure WebJob

我的未来我决定 提交于 2019-12-04 14:51:27

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.

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

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