主机的启动时间比预期的要长 - Azure功能

时间:2018-01-18 11:49:02

标签: azure azure-functions

当我在我的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/

中所述

至少可以看到一些关于它正在等待的输出的方向,我们非常感激。

1 个答案:

答案 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",

  }       
}