diff --git a/content/en/docs/refguide/modeling/resources/task-queue.md b/content/en/docs/refguide/modeling/resources/task-queue.md index 285102484f6..a2adf687025 100644 --- a/content/en/docs/refguide/modeling/resources/task-queue.md +++ b/content/en/docs/refguide/modeling/resources/task-queue.md @@ -136,7 +136,7 @@ It is possible to automatically retry a task when it fails. The following option 1. Retry with a fixed delay – specify the maximum number of attempts and the wait time between each attempt. 2. Retry with an exponentially increasing delay – specify the maximum number of attempts and the wait time before the first retry. The wait time will double after each failed retry up to a maximum. You can specify this maximum; if you do not specify, a maximum the default is 1 day. -Each attempt will produce its own `System.ProcessedQueueTask` entry. These entries will all have the same sequence number because they refer to the same task. +Each attempt will be scheduled as its own task and produce its own `System.ProcessedQueueTask` entry. These entries will all have the same sequence number because they refer to the same task. The retry mechanism can be activated through the API, for instance: