You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pkg/coordinator/tasks/run_task_options/README.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,12 @@ The `run_task_options` task is designed to execute a single task with configurab
20
20
-**`ignoreFailure`**:\
21
21
When `true`, any failure result from the child task is ignored, and the `run_task_options` task will return a success result instead. This is useful for cases where the child task's failure is an acceptable outcome.
22
22
23
+
-**`retryOnFailure`**:\
24
+
If set to `true`, the task will retry the execution of the child task if it fails, up to the maximum number of retries specified by `maxRetryCount`.
25
+
26
+
-**`maxRetryCount`**:\
27
+
The maximum number of times the child task will be retried if it fails and `retryOnFailure` is true. A value of 0 means no retries.
28
+
23
29
-**`newVariableScope`**:\
24
30
Determines whether to create a new variable scope for the child task. If `false`, the current scope is passed through, allowing the child task to share the same variable context as the `run_task_options` task.
25
31
@@ -35,5 +41,7 @@ Default settings for the `run_task_options` task:
0 commit comments