Skip to content

Commit 757c256

Browse files
authored
Update control-flow-until-activity.md
Added delay clause for multiple activities.
1 parent d57fa9e commit 757c256

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

articles/data-factory/control-flow-until-activity.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.author: makromer
77
ms.reviewer: jburchel
88
ms.subservice: orchestration
99
ms.topic: conceptual
10-
ms.date: 09/26/2024
10+
ms.date: 03/20/2025
1111
ms.custom: devx-track-azurepowershell, synapse
1212
---
1313

@@ -29,7 +29,8 @@ To use an Until activity in a pipeline, complete the following steps:
2929

3030
:::image type="content" source="media/control-flow-until-activity/dynamic-content-to-check-variable-value.png" alt-text="Shows the  Add dynamic content  pane with an expression to check a variable for a defined value.":::
3131

32-
2. Define activities that the Until activity executes by selecting the Edit Activities button on the Until activity directly, or by selecting the Activities tab to select it there. A new activities editor pane is displayed where you can add any activities for the Until activity to execute. In this example, a Set Variable activity simply sets the value of the variable referenced in the aforementioned expression to ['done'], so the Until activity's expression will be true the first time it's executed, and the Until activity will stop. In your real-world use, you can check any conditions required and the Until activity will continue to execute its child activities each time the expression is evaluated, until the conditions are met.
32+
2. Define activities that the Until activity executes by selecting the Edit Activities button on the Until activity directly, or by selecting the Activities tab to select it there. A new activities editor pane is displayed where you can add any activities for the Until activity to execute. In this example, a Set Variable activity simply sets the value of the variable referenced in the aforementioned expression to ['done'], so the Until activity's expression will be true the first time it's executed, and the Until activity will stop. In your real-world use, you can check any conditions required and the Until activity will continue to execute its child activities each time the expression is evaluated, until the conditions are met. If you iterate over multiple activities, there is potential delay in exiting the loop because of aggregation and cleanup work performed by the pipeline.
33+
3334

3435
:::image type="content" source="media/control-flow-until-activity/child-activities-editor.png" alt-text="Shows the activities editor for an Until activity with a Set Variable activity defined.":::
3536

0 commit comments

Comments
 (0)