gpt4 book ai didi

azure - 在azure中部署函数应用程序时出现错误

转载 作者:行者123 更新时间:2023-12-04 10:57:13 25 4
gpt4 key购买 nike

错误:函数运行时无法启动。 Microsoft.Azure.WebJobs.ServiceBus:无法从程序集“Microsoft.Azure.ServiceBus”加载类型“Microsoft.Azure.ServiceBus.Management.ManagementClient”,版本=3在此处输入代码.0.2.0,文化=中立

最佳答案

您在 host.json 中是否有如下所示的扩展包配置

"extensionBundle": {
"id": "Microsoft.Azure.Functions.ExtensionBundle",
"version": "[1.*, 2.0.0)"
}

如果是,则更改配置应该可以解决问题。这将强制该函数使用具有服务总线版本 3.0.2 的特定版本的扩展包。

"extensionBundle": {
"id": "Microsoft.Azure.Functions.ExtensionBundle",
"version": "[1.0.0, 1.1.0)"
}

Note: If your function app is using C# pre-compiled functions then removing the bundles configuration is the right fix for you.

关于azure - 在azure中部署函数应用程序时出现错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59099979/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com