Hello @Majid N | BIMAGE
This error message indicates that the function Functions.TimerTrigger1
has exceeded the timeout value of 5 minutes. The timeout duration for functions in a function app is defined by the functionTimeout
property in the host.json
project file. This property applies specifically to function executions.
After the trigger starts function execution, the function needs to return/respond within the timeout duration. To resolve this issue, you can increase the timeout duration for your function app by updating the functionTimeout
property in the host.json
file.
You can set the value to a higher value than the current value of 5 minutes. Here is an example of how to set the functionTimeout
property to 10 minutes in the host.json
file:
{ "functionTimeout": "00:10:00" }
After updating the host.json
file, you need to redeploy your function app for the changes to take effect.
I hope this helps
I hope that this response has addressed your query and helped you overcome your challenges. If so, please mark this response as Answered. This will not only acknowledge our efforts, but also assist other community members who may be looking for similar solutions.