Skip to content

Commit f3831b5

Browse files
committed
Fix typo: change 'retired' to 'retried' in retryCount field descriptions
1 parent a2cd097 commit f3831b5

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

articles/batch/batch-task-complete-event.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ ms.date: 01/29/2026
8585
|`startTime`|DateTime|The time when the task started running. 'Running' corresponds to the **running** state, so if the task specifies resource files or application packages, then the start time reflects the time when the task started downloading or deploying these resource files or application packages. If the task restarted or retried, this is the most recent time at which the task started running.|
8686
|`endTime`|DateTime|The time when the task completed.|
8787
|`exitCode`|Int32|The exit code of the task. If the task failed before it started running, then exitCode is null.|
88-
|`retryCount`|Int32|The number of times the Batch service retired the task. The task is retried if it exits with a nonzero exit code, up to the specified MaxTaskRetryCount.|
88+
|`retryCount`|Int32|The number of times the Batch service retried the task. The task is retried if it exits with a nonzero exit code, up to the specified MaxTaskRetryCount.|
8989
|`requeueCount`|Int32|The number of times the Batch service requeued the task as the result of a user request.<br /><br /> When you remove nodes from a pool (by resizing or shrinking it) or disable a job, you can choose to requeue the running tasks on those nodes for execution. It count tracks how many times the task requeued.|
9090
|`result`|String|The task result string, it could be "Success" or "Failure"|
9191
|[`schedulingError`](#schedulingError)|Complex Type|Contain detailed information about error.|

articles/batch/batch-task-fail-event.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ ms.date: 01/28/2026
8686
|`startTime`|DateTime|The time when the task started running. 'Running' corresponds to the **running** state, so if the task specifies resource files or application packages, then the start time reflects the time at which the task started downloading or deploying them. If the task is restarted or retried, it's the most recent time at which the task started running.|
8787
|`endTime`|DateTime|The time when the task completed.|
8888
|`exitCode`|Int32|The exit code of the task. If the task failed before it started running, then exitCode is null.|
89-
|`retryCount`|Int32|The number of times the Batch service retired the task. The task is retried if it exits with a nonzero exit code, up to the specified MaxTaskRetryCount.|
89+
|`retryCount`|Int32|The number of times the Batch service retried the task. The task is retried if it exits with a nonzero exit code, up to the specified MaxTaskRetryCount.|
9090
|`requeueCount`|Int32|The number of times the Batch service requeued the task as a result of user request.<br /><br /> When users remove nodes from a pool (by resizing or shrinking it) or disable a job, they can choose to requeue the running tasks on those nodes for execution. This count tracks how many times the task is requeued for these reasons.|
9191
|`result`|String|The task result string, it could be "Success" or "Failure".|
9292
|[`schedulingError`](#schedulingError)|Complex Type|Contain detailed information about error.|

0 commit comments

Comments
 (0)