Skip to content

Commit b8cb7db

Browse files
committed
fix warnings 2
Signed-off-by: Hannah Hunter <[email protected]>
1 parent d5ee500 commit b8cb7db

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

articles/azure-functions/durable/durable-functions-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ For language-specific requirements and package details, see [Durable Functions b
3434

3535
## How to get started
3636

37-
1. Create a new Azure Functions app by using one of the language quickstarts in [Quickstarts and samples](#quickstarts-and-samples).
37+
1. Create a new Azure Functions app by using one of the language quickstarts in [Supported languages](#supported-languages).
3838
1. Add an orchestrator function and one or more activity functions.
3939
1. Choose and configure your backend in [Durable Functions storage providers](durable-functions-storage-providers.md). The recommended option is [Durable Task Scheduler](./durable-task-scheduler/durable-task-scheduler.md).
4040
1. Run and test locally with Azure Functions Core Tools.

includes/functions-timeout-duration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The following table shows the default and maximum values (in minutes) for specif
2121
| **[Container Apps](../articles/container-apps/functions-overview.md)** | 30 | Unbounded<sup>5</sup> |
2222
| **[Consumption plan](../articles/azure-functions/consumption-plan.md)** | 5 | 10 |
2323

24-
1. Regardless of the function app timeout setting, 230 seconds is the maximum amount of time that an HTTP triggered function can take to respond to a request. This limit exists because of the [default idle timeout of Azure Load Balancer](../articles/app-service/faq-availability-performance-application-issues.yml#why-does-my-request-time-out-after-230-seconds). For longer processing times, consider using the [Durable Functions async pattern](../articles/azure-functions/durable/durable-functions-overview.md#async-http) or [defer the actual work and return an immediate response](../articles/azure-functions/performance-reliability.md#avoid-long-running-functions).
24+
1. Regardless of the function app timeout setting, 230 seconds is the maximum amount of time that an HTTP triggered function can take to respond to a request. This limit exists because of the [default idle timeout of Azure Load Balancer](../articles/app-service/faq-availability-performance-application-issues.yml#why-does-my-request-time-out-after-230-seconds). For longer processing times, consider using the [Durable Functions async pattern](../articles/azure-functions/durable/durable-functions-http-features.md#async-operation-tracking) or [defer the actual work and return an immediate response](../articles/azure-functions/performance-reliability.md#avoid-long-running-functions).
2525
2. There's no maximum execution timeout duration enforced. However, the grace period given to a function execution is 60 minutes [during scale in](../articles/azure-functions/event-driven-scaling.md#scale-in-behaviors) for the Flex Consumption and Premium plans, and a grace period of 10 minutes is given during platform updates.
2626
3. Requires the App Service plan be set to [Always On](/azure/azure-functions/dedicated-plan#always-on). A grace period of 10 minutes is given during platform updates.
2727
4. The default timeout for version 1.x of the Functions host runtime is _unbounded_.

0 commit comments

Comments
 (0)