Reputation: 979
I'm working on an Azure Function App. I was running it, and after 30 minutes it just stopped working.
It did not throw any exception. (The try-catch
in the Run
function did not catch any).
I'm using App Service Plan - Standard Plan
.
Function App Version: 2
Am I missing anything here. Any help is much appreciated.
Thanks.
Upvotes: 1
Views: 2298
Reputation: 15754
The default timeout of azure function with app service plan is 30 minutes, please refer to this tutorial or the screenshot below:
You can change it to unbounded execution by editing the host.json, please refer to this tutorial (also post the screenshot below for your reference)
Hope it would be helpful to your problem~
Upvotes: 2