Reputation: 489
I am running an azure function with basic plan in portal. I am getting this timeout error and my function is not running because of this reason. How I can resolve this issue
Upvotes: 16
Views: 26083
Reputation: 882
Azure Functions are now allowed to run upto 10 minutes. You need to change the "functionTimeout" value in host.json file.
https://learn.microsoft.com/en-us/azure/azure-functions/functions-scale#consumption-plan https://learn.microsoft.com/en-us/azure/azure-functions/functions-host-json#functiontimeout
Also, please check a similar question posted on SO: Azure Functions timeout for Consumption plan
Upvotes: 19