You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/logic-apps/edit-app-settings-host-settings.md
+26-2Lines changed: 26 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,8 +5,9 @@ services: logic-apps
5
5
ms.suite: integration
6
6
ms.reviewer: estfan, azla
7
7
ms.topic: how-to
8
-
ms.date: 03/14/2025
8
+
ms.date: 04/25/2025
9
9
ms.custom: fasttrack-edit
10
+
# Customer intent: As a logic app workflow developer, I want to learn about application settings and host settings that I can edit to customize the way that my Standard workflows run.
10
11
---
11
12
12
13
# Edit host and app settings for Standard logic apps in single-tenant Azure Logic Apps
@@ -229,7 +230,30 @@ The following settings work only for workflows that start with a recurrence-base
229
230
230
231
| Setting | Default value | Description |
231
232
|---------|---------------|-------------|
232
-
|`Runtime.FlowRunRetryableActionJobCallback.ActionJobExecutionTimeout`|`00:10:00` <br>(10 minutes) | Sets the amount of time for a workflow action job to run before timing out and retrying. |
233
+
|`Runtime.FlowRunRetryableActionJobCallback.ActionJobExecutionTimeout`|`00:10:00` <br>(10 minutes) | Sets the amount of time for a workflow action job to run before timing out and retrying. To change the default time-out for a built-in operations such as SAP, also set the **`functionTimeout`** host setting, which appears at the same level as the **`extensions`** object. This setting affects all workflow executions in the same logic app. |
234
+
|`functionTimeout`|`00:05:00` <br>(5 minutes) | Sets the time-out duration for all workflow executions in the same logic app. Keeping an upper bound is recommended, but you can use a value of **`-1`** for unbounded execution. <br><br>In the **host.json** file, the **`functionTimeout`** setting exists at the same level as the **`extensions`** object because this setting is available in Azure Functions, which provided the infrastructure that is extended by Azure Logic Apps (Standard). |
235
+
236
+
#### Change time-out value for built-in operations
237
+
238
+
For this task, add both the **`Runtime.FlowRunRetryableActionJobCallback.ActionJobExecutionTimeout`** and **`functionTimeout`** host settings to your **host.json** file as shown in the following example:
0 commit comments