我已将Azure Functions容器部署到我的AKS群集。由于某种原因,该函数因以下错误而未加载:
Storage account connection string 'AzureWebJobsAzureWebJobsStorage' does not exist
现在我在local.settings.json中有一个应用程序设置,名为AzureWebJobsStorage,所以我真的不知道为什么会出现这个错误。在function.json中,我只引用AzureWebJobsStorage。有人知道吗?
1条答案
按热度按时间daupos2t1#
您收到的错误显示连接字符串(
AzureWebJobsAzureWebJobsStorage
)与您的设置(AzureWebJobsStorage
)中的内容不匹配。听起来像是某个地方出现了模板复制错误,因为设置应该只是“AzureWebJobsStorage”。您是否验证了local.settings.json
中的密钥是否正确?