Skip to content

Commit 6459616

Browse files
committed
Update functionTimeout description
1 parent e5500de commit 6459616

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

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

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -325,23 +325,16 @@ A list of functions that the job host runs. An empty array means run all functio
325325

326326
## functionTimeout
327327

328-
Indicates the timeout duration for all function executions. It follows the timespan string format.
329-
330-
| Plan type | Default (min) | Maximum (min) |
331-
| -- | -- | -- |
332-
| Consumption | 5 | 10 |
333-
| Premium<sup>1</sup> | 30 | -1 (unbounded)<sup>2</sup> |
334-
| Dedicated (App Service) | 30 | -1 (unbounded)<sup>2</sup> |
335-
336-
<sup>1</sup> Premium plan execution is only guaranteed for 60 minutes, but technically unbounded.
337-
<sup>2</sup> A value of `-1` indicates unbounded execution, but keeping a fixed upper bound is recommended.
328+
Indicates the timeout duration for all function executions. It follows the timespan string format. A value of `-1` indicates unbounded execution, but keeping a fixed upper bound is recommended.
338329

339330
```json
340331
{
341332
"functionTimeout": "00:05:00"
342333
}
343334
```
344335

336+
For more information on the default and maximum values for specific plans, see [Function app timeout duration](./functions-scale.md#function-app-timeout-duration).
337+
345338
## healthMonitor
346339

347340
Configuration settings for [Host health monitor](https://github.com/Azure/azure-webjobs-sdk-script/wiki/Host-Health-Monitor).

0 commit comments

Comments
 (0)