An Azure service that provides an event-driven serverless compute platform.
Hello Hua, Daniel
Thanks for reaching out on Microsoft Q&A and really appreciate your patience while we looked into this.
host.json file is currently referencing the Preview extension bundle:
{
"version": "2.0",
"isDefaultHostConfig": true,
"extensionBundle": {
"id": "Microsoft.Azure.Functions.ExtensionBundle.Preview",
"version": "[4.*, 5.0.0)"
}
}
Please update host.json to the following and check if the issue persists:
{
"version": "2.0",
"extensionBundle": {
json
"id": "Microsoft.Azure.Functions.ExtensionBundle",
"version": "[4.0.0, 5.0.0)"
}
}
Let us know if this resolves the problem or if you need further assistance.