Skip to content

Commit 878b790

Browse files
authored
Update logic-apps-exception-handling.md
1 parent 46d8f59 commit 878b790

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ specify a retry policy, the action uses the default policy.
8484

8585
| Value | Type | Description |
8686
|-------|------|-------------|
87-
| <*retry-policy-type*> | String | The retry policy type you want to use: "default", "none", "fixed", or "exponential" |
87+
| <*retry-policy-type*> | String | The retry policy type you want to use: `default`, `none`, `fixed`, or `exponential` |
8888
| <*retry-interval*> | String | The retry interval where the value must use [ISO 8601 format](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations). The default minimum interval is `PT5S` and the maximum interval is `PT1D`. When you use the exponential interval policy, you can specify different minimum and maximum values. |
8989
| <*retry-attempts*> | Integer | The number of retry attempts, which must be between 1 and 90 |
9090
||||
@@ -277,9 +277,9 @@ For limits on scopes, see [Limits and config](../logic-apps/logic-apps-limits-an
277277
Although catching failures from a scope is useful,
278278
you might also want context to help you understand
279279
exactly which actions failed plus any errors or status codes that were returned.
280-
The "@result()" expression provides context about the result of all actions in a scope.
280+
The `@result()` expression provides context about the result of all actions in a scope.
281281

282-
The "@result()" expression accepts a single parameter (the scope's name)
282+
The `@result()` expression accepts a single parameter (the scope's name)
283283
and returns an array of all the action results from within that scope.
284284
These action objects include the same attributes as the **@actions()** object,
285285
such as the action's start time, end time, status, inputs, correlation IDs, and outputs.
@@ -338,9 +338,9 @@ for any actions that failed within the scope "My_Scope":
338338
Here's a detailed walkthrough that describes what happens in this example:
339339

340340
1. To get the result from all actions inside "My_Scope",
341-
the **Filter Array** action uses this filter expression: "@result('My_Scope')"
341+
the **Filter Array** action uses this filter expression: `@result('My_Scope')`
342342

343-
2. The condition for **Filter Array** is any "@result()"
343+
2. The condition for **Filter Array** is any `@result()`
344344
item that has a status equal to **Failed**.
345345
This condition filters the array that has all the action
346346
results from "My_Scope" down to an array with only the failed action results.
@@ -356,8 +356,8 @@ action result that was previously filtered.
356356
4. Send an HTTP POST on the **For each** item response body,
357357
which is the `@item()['outputs']['body']` expression.
358358

359-
The "@result()" item shape is the same as the
360-
"@actions()" shape and can be parsed the same way.
359+
The `@result()` item shape is the same as the
360+
`@actions()` shape and can be parsed the same way.
361361

362362
5. Include two custom headers with the failed action name (`@item()['name']`)
363363
and the failed run client tracking ID (`@item()['clientTrackingId']`).

0 commit comments

Comments
 (0)