我有一个预定的网络作业和一个网络应用程序。Web 应用程序共有 3 个部署槽(包括生产槽)。我的问题是,即使插槽未交换为“prod”,预定的 azure web 作业也会运行吗?我在我的数据库中看到该作业的页面似乎被调用了 3 次,但我的理解是 nonprod webjobs 没有运行。
webjob 本身非常简单。它只是一个使用以下格式调用网页的 powershell 脚本:
$progressPreference = "silentlyContinue"
$result = Invoke-WebRequest -Uri "http://hithere.com"
-Method Get -UseBasicParsing;
感谢大家的帮助!