Skip to content

Commit e9f05d2

Browse files
committed
Minor edits
1 parent 6abff5d commit e9f05d2

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

includes/functions-supported-languages.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,21 @@ ms.custom:
88
- include file
99
- ignite-2023
1010
---
11-
Make sure to select your preferred development language at the [top](#top) of the article.
11+
Make sure to select your preferred development language at the [top of the article](#top).
1212
::: zone pivot="programming-language-csharp"
1313
The following table shows the .NET versions supported by Azure Functions.
1414

1515
The supported version of .NET depends on both your Functions runtime version and your chosen execution model:
1616

1717
### [Isolated worker model](#tab/isolated-process)
1818

19-
Your function code runs in a separate .NET worker process. Use with [supported versions of .NET and .NET Framework](../articles/azure-functions/dotnet-isolated-process-guide.md#supported-versions). To learn more, see [Develop .NET isolated worker process functions](../articles/azure-functions/dotnet-isolated-process-guide.md).
19+
Your function code runs in a separate .NET worker process. Use with [supported versions of .NET and .NET Framework](../articles/azure-functions/dotnet-isolated-process-guide.md#supported-versions). To learn more, see [Guide for running C# Azure Functions in the isolated worker model](../articles/azure-functions/dotnet-isolated-process-guide.md).
2020

2121
### [In-process model](#tab/in-process)
2222

2323
[!INCLUDE [functions-in-process-model-retirement-note](./functions-in-process-model-retirement-note.md)]
2424

25-
Your function code runs in the same process as the Functions host process. Supports only [Long Term Support (LTS) versions of .NET](../articles/azure-functions/functions-dotnet-class-library.md#supported-versions). To learn more, see [Develop .NET class library functions](../articles/azure-functions/functions-dotnet-class-library.md).
25+
Your function code runs in the same process as the Functions host process. Supports only [Long Term Support (LTS) versions of .NET](../articles/azure-functions/functions-dotnet-class-library.md#supported-versions). To learn more, see [Develop C# class library functions using Azure Functions](../articles/azure-functions/functions-dotnet-class-library.md).
2626

2727
---
2828

@@ -67,7 +67,7 @@ For more information, see [Guide for running C# Azure Functions in the isolated
6767

6868
Running C# functions in an isolated worker process isn't supported by version 1.x of the Functions runtime. Instead choose the **In-process** tab or choose **v4.x**.
6969

70-
---
70+
---
7171

7272
::: zone-end
7373
::: zone pivot="programming-language-java"

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/azure-functions/functions-container-apps-hosting.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 time-out setting, 230 seconds is the maximum amount of time that an HTTP triggered function can take to respond to a request. This is because of the [default idle time-out 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 time-out setting, 230 seconds is the maximum amount of time that an HTTP triggered function can take to respond to a request. This is because of the [default idle time-out 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).
2525
2. There is no maximum execution time-out 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 time-out for version 1.x of the Functions host runtime is _unbounded_.

0 commit comments

Comments
 (0)