From 05577cace749db56640d7c77b497db889bc3d7cf Mon Sep 17 00:00:00 2001 From: Leroy van Engelen <223281140+lvanengelen-mx@users.noreply.github.com> Date: Fri, 13 Mar 2026 14:41:49 +0100 Subject: [PATCH] Clarify task scheduling in retry mechanism Clarify that retries are themselves scheduled --- content/en/docs/refguide/modeling/resources/task-queue.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: