Skip to content

Commit fc6a133

Browse files
committed
update cli output and another immediately phrase
Signed-off-by: Hannah Hunter <[email protected]>
1 parent 7304906 commit fc6a133

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

articles/azure-functions/durable-task-scheduler/durable-task-scheduler-auto-purge.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Autopurge ignores data associated with the following statuses:
3030
3131
### Policy value
3232

33-
Retention value can range from 0 (purge immediately after completion) to the maximum integer value, with the unit being **days**.
33+
Retention value can range from 0 (purge up to 5 minutes after completion) to the maximum integer value, with the unit being **days**.
3434

3535
Although retention periods have no maximum limit, we recommend you avoid retaining large volumes of stale orchestration data for extended periods. This practice ensures efficient use of storage resources and maintains optimal app performance.
3636

@@ -189,21 +189,25 @@ If creation is successful, you receive the following response.
189189

190190
```json
191191
{
192-
"id": "/subscriptions/SUBSCRIPTION_ID/resourceGroups/RESOURCE_GROUP_NAME/providers/Microsoft.DurableTask/schedulers/SCHEDULER_NAMER/retentionPolicies/default",
192+
"id": "/subscriptions/SUBSCRIPTION_ID/resourceGroups/RESOURCE_GROUP/providers/Microsoft.DurableTask/schedulers/SCHEDULER_NAMER/retentionPolicies/default",
193193
"name": "default",
194194
"properties": {
195195
"provisioningState": "Succeeded",
196196
"retentionPolicies": [
197+
{
198+
"retentionPeriodInDays": 1
199+
},
197200
{
198201
"orchestrationState": "Completed",
199202
"retentionPeriodInDays": 0
200203
},
201204
{
202205
"orchestrationState": "Failed",
203-
"retentionPeriodInDays": 30
206+
"retentionPeriodInDays": 60
204207
}
205208
]
206209
},
210+
"resourceGroup": "RESOURCE_GROUP",
207211
"systemData": {
208212
"createdAt": "2025-04-23T23:41:17.3165122Z",
209213
"createdBy": "[email protected]",

0 commit comments

Comments
 (0)