已添加Azure Functions应用设置前缀

tzdcorbm  于 2022-12-24  发布在  其他
关注(0)|答案(1)|浏览(87)

我已将Azure Functions容器部署到我的AKS群集。由于某种原因,该函数因以下错误而未加载:

Storage account connection string 'AzureWebJobsAzureWebJobsStorage' does not exist

现在我在local.settings.json中有一个应用程序设置,名为AzureWebJobsStorage,所以我真的不知道为什么会出现这个错误。在function.json中,我只引用AzureWebJobsStorage。有人知道吗?

daupos2t

daupos2t1#

您收到的错误显示连接字符串(AzureWebJobsAzureWebJobsStorage)与您的设置(AzureWebJobsStorage)中的内容不匹配。听起来像是某个地方出现了模板复制错误,因为设置应该只是“AzureWebJobsStorage”。您是否验证了local.settings.json中的密钥是否正确?

相关问题