Skip to content

Commit d85d168

Browse files
authored
Merge pull request #93447 from ggailey777/patch-3
Fix functionTimeout
2 parents 7f605c0 + 4b88540 commit d85d168

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

articles/azure-functions/functions-host-json-v1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ A list of functions that the job host runs. An empty array means run all functio
163163

164164
## functionTimeout
165165

166-
Indicates the timeout duration for all functions. In a serverless Consumption plan, the valid range is from 1 second to 10 minutes, and the default value is 5 minutes. In an App Service plan, there is no overall limit and the default depends on the runtime version.
166+
Indicates the timeout duration for all functions. In a serverless Consumption plan, the valid range is from 1 second to 10 minutes, and the default value is 5 minutes. In an App Service plan, there is no overall limit and the default is _null_, which indicates no timeout.
167167

168168
```json
169169
{

articles/azure-functions/functions-host-json.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
---
22
title: host.json reference for Azure Functions 2.x
33
description: Reference documentation for the Azure Functions host.json file with the v2 runtime.
4-
services: functions
54
author: ggailey777
6-
manager: jeconnoc
7-
keywords:
5+
manager: gwallace
86
ms.service: azure-functions
97
ms.topic: conceptual
108
ms.date: 09/08/2018
@@ -145,9 +143,7 @@ A list of functions that the job host runs. An empty array means run all functio
145143
## functionTimeout
146144

147145
Indicates the timeout duration for all functions. It follows the timespan string format. In a serverless Consumption plan, the valid range is from 1 second to 10 minutes, and the default value is 5 minutes.
148-
In a Dedicated (App Service) plan, there is no overall limit, and the default depends on the runtime version:
149-
+ Version 1.x: the default is *null*, which indicates no timeout.
150-
+ Version 2.x: the default value is 30 minutes. A value of `-1` indicates unbounded execution.
146+
In a Dedicated (App Service) plan, there is no overall limit, and the default value is 30 minutes. A value of `-1` indicates unbounded execution.
151147

152148
```json
153149
{

0 commit comments

Comments
 (0)