Skip to content

Commit 7bda16a

Browse files
authored
Clarity edits
1 parent f3c32a5 commit 7bda16a

File tree

1 file changed

+13
-14
lines changed

1 file changed

+13
-14
lines changed

articles/logic-apps/logic-apps-exception-handling.md

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -22,29 +22,28 @@ The way that any integration architecture appropriately handles downtime or issu
2222

2323
For the most basic exception and error handling, you can use the *retry policy* when supported on a trigger or action, such as the [HTTP action](logic-apps-workflow-actions-triggers.md#http-trigger). If the trigger or action's original request times out or fails, resulting in a 408, 429, or 5xx response, the retry policy specifies that the trigger or action resend the request per policy settings.
2424

25-
### Retry policy types
26-
27-
By default, the retry policy is set to the **Default** type.
28-
29-
| Retry policy | Description |
30-
|--------------|-------------|
31-
| **Default** | This policy sends up to 4 retries at *exponentially increasing* intervals, which scale by 7.5 seconds but are capped between 5 and 45 seconds. For more information, review the [Default](#default) policy type. |
32-
| **None** | Don't resend the request. For more information, review the [None](#none) policy type. |
33-
| **Exponential Interval** | This policy waits a random interval, which is selected from an exponentially growing range before sending the next request. For more information, review the [Exponential Interval](#exponential-interval) policy type. |
34-
| **Fixed Interval** | This policy waits the specified interval before sending the next request. For more information, review the [Fixed Interval](#fixed-interval) policy type. |
35-
|||
36-
3725
<a name="retry-policy-limits"></a>
3826

3927
### Retry policy limits
4028

4129
For more information about retry policies, settings, limits, and other options, review [Retry policy limits](logic-apps-limits-and-config.md#retry-policy-limits).
4230

31+
### Retry policy types
32+
33+
Connector operations that support retry policies use the **Default** policy unless you select a different retry policy.
34+
35+
| Retry policy | Description |
36+
|--------------|-------------|
37+
| **Default** | For most operations, the **Default** retry policy is an [exponential interval policy](#exponential-interval) that sends up to 4 retries at *exponentially increasing* intervals. These intervals scale by 7.5 seconds but are capped between 5 and 45 seconds. Several operations use a different **Default** retry policy, such as a [fixed interval policy](#fixed-interval). For more information, review the [Default retry policy type](#default). |
38+
| **None** | Don't resend the request. For more information, review [None - No retry policy](#none). |
39+
| **Exponential Interval** | This policy waits a random interval, which is selected from an exponentially growing range before sending the next request. For more information, review the [exponential interval policy type](#exponential-interval). |
40+
| **Fixed Interval** | This policy waits the specified interval before sending the next request. For more information, review the [fixed interval policy type](#fixed-interval). |
41+
4342
### Change retry policy type in the designer
4443

4544
1. In the [Azure portal](https://portal.azure.com), open your logic app workflow in the designer.
4645

47-
1. Based on your [logic app type](logic-apps-overview.md#resource-environment-differences), open the trigger or action's **Settings**.
46+
1. Based on whether you're working on a Consumption or Standard workflow, open the trigger or action's **Settings**.
4847

4948
* **Consumption**: On the action shape, open the ellipses menu (**...**), and select **Settings**.
5049

@@ -99,7 +98,7 @@ For more information about retry policies, settings, limits, and other options,
9998

10099
#### Default retry policy
101100

102-
Connector operations that support retry policies use the **Default** policy unless you select a different retry policy. For most operations, the default retry policy is the [exponential interval policy](#exponential-interval). For several operations, the default policy might be the [fixed interval policy](#fixed-interval) or another retry policy.
101+
Connector operations that support retry policies use the **Default** policy unless you select a different retry policy. For most operations, the **Default** retry policy is an exponential interval policy that sends up to 4 retries at *exponentially increasing* intervals. These intervals scale by 7.5 seconds but are capped between 5 and 45 seconds. Several operations use a different **Default** retry policy, such as a fixed interval policy.
103102

104103
In your workflow definition, the trigger or action definition doesn't explicitly define the default policy, but the following example shows how the default retry policy behaves for the HTTP action:
105104

0 commit comments

Comments
 (0)