Skip to content

Commit ad9d895

Browse files
committed
validation error fixes
1 parent e3800e0 commit ad9d895

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

articles/azure-databricks/index.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,15 +85,15 @@ landingContent:
8585
- linkListType: deploy
8686
links:
8787
- text: Deploy Azure Databricks in your virtual network
88-
url: vnet-injection.md
88+
url: https://docs.microsoft.com/azure/databricks/administration-guide/cloud-configurations/azure/vnet-inject
8989
- linkListType: tutorial
9090
links:
9191
- text: Query a SQL Server Linux Docker container in a virtual network from an Azure Databricks notebook
9292
url: vnet-injection-sql-server.md
9393
- title: Stream data
9494
linkLists:
9595
- linkListType: learn
96-
links:
96+
links:
9797
- text: Work with streaming data in Azure Databricks
9898
url: https://docs.microsoft.com/learn/modules/streaming-in-azure-databricks/
9999
- linkListType: tutorial
@@ -115,4 +115,4 @@ landingContent:
115115
- text: Databricks REST API
116116
url: /rest/api/databricks
117117
- text: R developer's guide
118-
url: ../machine-learning/r-developers-guide.md
118+
url: ../machine-learning/r-developers-guide.md

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ You can customize an action's "run after" behavior so that the action runs when
244244

245245
## Evaluate actions with scopes and their results
246246

247-
Similar to running steps after individual actions with the `runAfter` property, you can group actions together inside a [scope](../logic-apps/logic-apps-control-flow-run-steps-group-scopes.md). You can use scopes when you want to logically group actions together, assess the scope's aggregate status, and perform actions based on that status. After all the actions in a scope finish running, the scope itself gets its own status.
247+
Similar to running steps after individual actions with the `runAfter` property, you can group actions together inside a [scope](../logic-apps/logic-apps-control-flow-run-steps-group-scopes.md). You can use scopes when you want to logically group actions together, assess the scope's aggregate status, and perform actions based on that status. After all the actions in a scope finish running, the scope itself gets its own status.
248248

249249
To check a scope's status, you can use the same criteria that you use to check a logic app's run status, such as `Succeeded`, `Failed`, and so on.
250250

@@ -262,7 +262,7 @@ Although catching failures from a scope is useful, you might also want context t
262262

263263
The [`result()`](../logic-apps/workflow-definition-language-functions-reference.md#result) function provides context about the results from all the actions in a scope. The `result()` function accepts a single parameter, which is the scope's name, and returns an array that contains all the action results from within that scope. These action objects include the same attributes as the `actions()` object, such as the action's start time, end time, status, inputs, correlation IDs, and outputs. To send context for any actions that failed within a scope, you can easily pair a `@result()` expression with the `runAfter` property.
264264

265-
To run an action for each action in a scope that has a `Failed` result, and to filter the array of results down to the failed actions, you can pair a `@result()` expression with a [**Filter Array**](../connectors/connectors-native-query.md) action and a [**For each**](../logic-apps/logic-apps-control-flow-loops.md) loop. You can take the filtered result array and perform an action for each failure using the `For_each` loop.
265+
To run an action for each action in a scope that has a `Failed` result, and to filter the array of results down to the failed actions, you can pair a `@result()` expression with a [**Filter Array**](logic-apps-perform-data-operations.md#filter-array-action) action and a [**For each**](../logic-apps/logic-apps-control-flow-loops.md) loop. You can take the filtered result array and perform an action for each failure using the `For_each` loop.
266266

267267
Here's an example, followed by a detailed explanation, that sends an HTTP POST request with the response body for any actions that failed within the scope "My_Scope":
268268

@@ -364,4 +364,4 @@ To evaluate run statuses, you can monitor the logs and metrics, or publish them
364364
## Next steps
365365

366366
* [See how a customer builds error handling with Azure Logic Apps](../logic-apps/logic-apps-scenario-error-and-exception-handling.md)
367-
* [Find more Logic Apps examples and scenarios](../logic-apps/logic-apps-examples-and-scenarios.md)
367+
* [Find more Logic Apps examples and scenarios](../logic-apps/logic-apps-examples-and-scenarios.md)

0 commit comments

Comments
 (0)