2

Is there a way to update host.json of an Azure Function via App Service Editor? On trying the same, I get the following error:

"Failed to save 'host.json'. Error code: 409"

enter image description here

user989988
  • 3,006
  • 7
  • 44
  • 91

1 Answers1

1

I think you can use "AzureFunctionsJobHost__path__to__setting" to add / override host.json settings

"AzureFunctionsJobHost__functionTimeout": "05:00:00"

Info found here - https://learn.microsoft.com/en-us/azure/azure-functions/functions-host-json#override-hostjson-values

Btw, I think you can use "-1" if you don't want timeout at all and your tier/plan supports this.

johnykes
  • 1,663
  • 2
  • 9
  • 25