suresh
suresh

Reputation: 489

Timeout value of 00:05:00 was exceeded by function in azure functions

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

See the error

Upvotes: 16

Views: 26083

Answers (1)

Vaibhav Singla
Vaibhav Singla

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

Related Questions