尽管host.json正确,Azure函数仍引发ExternalStartupException

y1aodyip  于 2023-08-07  发布在  其他
关注(0)|答案(1)|浏览(103)

我在函数概述中遇到以下错误:

Microsoft.Azure.WebJobs.Script.ExternalStartupException : Error building configuration in an external startup class. ---> Microsoft.Azure.WebJobs.Script.HostInitializationException : Referenced bundle Microsoft.Azure.Functions.ExtensionBundle of version 1.8.1 does not meet the required minimum version of 2.6.1. Update your extension bundle reference in host.json

字符串
尽管我的host.json是:

{
  "version": "2.0",
  "extensionBundle": {
    "id": "Microsoft.Azure.Functions.ExtensionBundle",
    "version": "[3.3.0, 4.0.0)"
  }
}


知道是怎么回事吗

8tntrjer

8tntrjer1#

实际上,错误不是最新的。
在我的情况下,错误被修复,但门户网站仍然显示错误。您可以通过转到与您的函数应用关联的存储帐户并清除表来清 debugging 误:
“AzureFunctionsDiagnosticEventsDATEHERE”
Thx到this answer

相关问题