当我在我的visual studio 2015中运行我的azure函数时,会出现以下错误。
The host is taking longer than expected to start.
我正在使用预编译的azure函数,如https://blog.kloud.com.au/2017/05/03/precompiled-azure-functions-revisited/
中所述至少可以看到一些关于它正在等待的输出的方向,我们非常感激。
答案 0 :(得分:4)
在我的appsettings.json
中 AzureStorage , AzureWebJobsStorage, AzureWebJobsDashboard
'
值字段中的
连接字符串无效。希望这对有相同问题的人有用。请验证您的host.json 以及azure函数的默认属性。
{
"IsEncrypted": false,
"Values": {
"AzureWebJobsStorage": "DefaultEndpointsProtocol=https;AccountName=abcstorage;AccountKey=xxx",
"AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;AccountName=xxx;AccountKey=xxxx",
"AzureStorage": "DefaultEndpointsProtocol=https;AccountName=xxxx;AccountKey=xxxx",
}
}