13

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

Andrew
  • 26,706
  • 9
  • 85
  • 101
suresh
  • 329
  • 2
  • 4
  • 8

1 Answers1

14

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

Vaibhav Singla
  • 832
  • 1
  • 10
  • 14