Skip to content

Commit fe17ceb

Browse files
committed
Fix issue in batch-task-complete-event.md
1 parent 7df38e6 commit fe17ceb

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ ms.date: 01/28/2026
4040
"schedulingError": {
4141
"category": "",
4242
"code": "",
43-
"message": "",
43+
"message": "The task exited with an exit code representing a failure",
4444
"details": []
4545
}
4646
}
@@ -83,8 +83,8 @@ ms.date: 01/28/2026
8383
|Element name|Type|Notes|
8484
|------------------|----------|-----------|
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. If the task restarted or retried, this is the most recent time at which the task started running.|
86-
|`endTime`|DateTime|The time when the task completed. If the task failed before it started running, then exitCode is null.|
87-
|`exitCode`|Int32|The exit code of the task.|
86+
|`endTime`|DateTime|The time when the task completed.|
87+
|`exitCode`|Int32|The exit code of the task. If the task failed before it started running, then exitCode is null.|
8888
|`retryCount`|Int32|The number of times the task is retried by the Batch service. 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 task is requeued by the Batch service 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. This count tracks how many times the task requeued for these reasons.|
9090
|`result`|String|The task result string, it could be "Success" or "Failure".|

0 commit comments

Comments
 (0)