0

我正在使用 NReco 在 azure 函数中将 HTML 转换为 pdf。它曾经正常工作,但是当我部署在另一个插槽中时,我遇到了错误。

Assembly reference changes detected. Restarting host...
Environment shutdown has been triggered. Stopping host and signaling shutdown.
completed successfully
Function completed (Success, Id=d5042f25-18d9-489a-81fe-05ae07607012, Duration=10921ms)
Executed 'AzureBillFunc' (Succeeded, Id=d5042f25-18d9-489a-81fe-05ae07607012)
The host started (12276ms)
A ScriptHost error has occurred
Microsoft.Azure.WebJobs.Host: Cannot access a disposed of object. Stopping Host

我可以知道上述步骤中发生了什么吗?

4

1 回答 1

-1

您正在尝试访问该对象host.json,但它已被处置。换句话说,不可用。

当对象被另一个进程使用时会发生这种情况,因此您可能有另一个实例正在运行,或者持有一个引用。我建议关闭所有终端以终止所有进程。

对于函数应用版本 2,如果您没有host.json文件,它会自动为您创建一个文件,内容如下:

{
  "version":"2.0"
}
于 2019-01-08T03:17:36.803 回答