Skip to content

Commit 35d4039

Browse files
Merge pull request #303146 from ecfan/issues
[Azure Logic Apps][Content Health] Address doc feedback issues
2 parents 5655510 + 22aa65f commit 35d4039

File tree

2 files changed

+17
-11
lines changed

2 files changed

+17
-11
lines changed

articles/connectors/connectors-native-recurrence.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.suite: integration
66
ms.reviewer: estfan, azla
77
ms.topic: how-to
88
ms.custom: engagement-fy23
9-
ms.date: 01/13/2025
9+
ms.date: 07/22/2025
1010
---
1111

1212
# Schedule and run recurring workflows with the Recurrence trigger in Azure Logic Apps
@@ -81,7 +81,7 @@ Based on whether your workflow is [Consumption or Standard](../logic-apps/logic-
8181

8282
1. Review the following considerations when you use the **Recurrence** trigger:
8383

84-
* If you don't specify a specific [start date and time](../logic-apps/concepts-schedule-automated-recurring-tasks-workflows.md#start-time), the first recurrence runs immediately when you save the workflow or deploy the logic app resource, despite your trigger's recurrence setup. To avoid this behavior, provide a start date and time for when you want the first recurrence to run.
84+
* Unless you specify a specific [start date and time](../logic-apps/concepts-schedule-automated-recurring-tasks-workflows.md#start-time), the first recurrence immediately runs when you save the workflow or deploy the logic app resource, despite your trigger's recurrence setup. To avoid this behavior, provide a start date and time for when you want the first recurrence to run.
8585

8686
* If you don't specify any other advanced scheduling options, such as specific times to run future recurrences, those recurrences are based on the last run time. As a result, the start times for those recurrences might drift due to factors such as latency during storage calls.
8787

@@ -132,7 +132,9 @@ Based on whether your workflow is [Consumption or Standard](../logic-apps/logic-
132132

133133
1. Review the following considerations when you use the **Recurrence** trigger:
134134

135-
* If you don't specify a specific [start date and time](../logic-apps/concepts-schedule-automated-recurring-tasks-workflows.md#start-time), the first recurrence runs immediately when you save the workflow or deploy the logic app resource, despite your trigger's recurrence setup. To avoid this behavior, provide a start date and time for when you want the first recurrence to run.
135+
* For Standard logic app workflows, if you stop the logic app resource (website), and enough time passes to skip one or more recurrence intervals without the website processing any data, restarting the logic app resource causes the **Recurrence** trigger to immediately fire and resume as expected.
136+
137+
* Unless you specify a specific [start date and time](../logic-apps/concepts-schedule-automated-recurring-tasks-workflows.md#start-time), the first recurrence immediately runs when you save the workflow or deploy the logic app resource, despite your trigger's recurrence setup. To avoid this behavior, provide a start date and time for when you want the first recurrence to run.
136138

137139
* If you don't specify any other advanced scheduling options, such as specific times to run future recurrences, those recurrences are based on the last run time. As a result, the start times for those recurrences might drift due to factors such as latency during storage calls.
138140

@@ -244,7 +246,7 @@ To schedule jobs, Azure Logic Apps puts the message for processing into the queu
244246

245247
Otherwise, if you don't select a time zone, daylight saving time (DST) events might affect when triggers run. For example, the start time shifts one hour forward when DST starts and one hour backward when DST ends. However, some time windows might cause problems when the time shifts. For more information and examples, see [Recurrence for daylight saving time and standard time](../logic-apps/concepts-schedule-automated-recurring-tasks-workflows.md#daylight-saving-standard-time).
246248

247-
## Next steps
249+
## Related content
248250

249251
* [Pause workflows with delay actions](../connectors/connectors-native-delay.md)
250252
* [Managed connectors for Azure Logic Apps](/connectors/connector-reference/connector-reference-logicapps-connectors)

articles/logic-apps/edit-app-settings-host-settings.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -189,18 +189,22 @@ The following settings are used to manually stop and immediately delete the spec
189189
190190
| Setting | Default value | Description |
191191
|---------|---------------|-------------|
192-
| `Jobs.CleanupJobPartitionPrefixes` | None | Immediately deletes all the run jobs for the specified workflows. |
193-
| `Jobs.SuspendedJobPartitionPrefixes` | None | Stops the run jobs for the specified workflows. |
194-
| `SequencerJobs.SuspendedSequencerPartitionPrefixes` | None | Stops the sequencer run jobs for the specified workflows. |
192+
| `Jobs.CleanupJobPartition` | None | Immediately deletes all the run jobs for the specified workflows. |
193+
| `Jobs.SuspendedJobPartition` | None | Stops the run jobs for the specified workflows. |
194+
| `SequencerJobs.SuspendedSequencerPartition` | None | Stops the sequencer run jobs for the specified workflows. |
195195

196-
The following example shows the syntax for these settings where each workflow ID is followed by a colon (`:`) and separated by a semicolon (`;`):
196+
To specify individual workflows, use the following syntax where each workflow ID is followed by a colon (`:`) and is separated by a semicolon (`;`):
197197

198198
```json
199-
"Jobs.CleanupJobPartitionPrefixes": "<workflow-ID-1>:;<workflow-ID-2>:",
200-
"Jobs.SuspendedJobPartitionPrefixes": "<workflow-ID-1>:;<workflow-ID-2>:",
201-
"SequencerJobs.SuspendedSequencerPartitionPrefixes": "<workflow-ID-1>:;<workflow-ID-2>:"
199+
"Jobs.CleanupJobPartition": "<workflow-ID-1>:;<workflow-ID-2>",
200+
"Jobs.SuspendedJobPartition": "<workflow-ID-1>:;<workflow-ID-2>:",
201+
"SequencerJobs.SuspendedSequencerPartition": "<workflow-ID-1>:;<workflow-ID-2>:"
202202
```
203203

204+
To cancel a specific run, provide the run ID following the workflow ID with **2D** as the separator, for example:
205+
206+
`"Jobs.SuspendedJobPartition": "<workflow-ID-1>:2D<run-ID>;",`
207+
204208
<a name="recurrence-triggers"></a>
205209

206210
### Recurrence-based triggers

0 commit comments

Comments
 (0)