@@ -763,19 +763,19 @@ This means that if you have a queue with a `concurrencyLimit` of 1, you can only
763
763
764
764
We've done some work cleaning up the run statuses. The new statuses are:
765
765
766
- - ` PENDING_VERSION ` : Task is waiting for a version update because it cannot execute without additional information (task, queue, etc.)
767
- - ` QUEUED ` : Task is waiting to be executed by a worker
766
+ - ` PENDING_VERSION ` : Task is waiting for a version update because it cannot execute without additional information (task, queue, etc.).
767
+ - ` QUEUED ` : Task is waiting to be executed by a worker.
768
768
- ` DEQUEUED ` : Task has been dequeued and is being sent to a worker to start executing.
769
- - ` EXECUTING ` : Task is currently being executed by a worker
770
- - ` WAITING ` : Task has been paused by the system, and will be resumed by the system
771
- - ` COMPLETED ` : Task has been completed successfully
772
- - ` CANCELED ` : Task has been canceled by the user
773
- - ` FAILED ` : Task has failed to complete, due to an error in the system
774
- - ` CRASHED ` : Task has crashed and won't be retried, most likely the worker ran out of resources, e.g. memory or storage
769
+ - ` EXECUTING ` : Task is currently being executed by a worker.
770
+ - ` WAITING ` : Task has been paused by the system, and will be resumed by the system.
771
+ - ` COMPLETED ` : Task has been completed successfully.
772
+ - ` CANCELED ` : Task has been canceled by the user.
773
+ - ` FAILED ` : Task has failed to complete, due to an error in the task code.
774
+ - ` CRASHED ` : Task has crashed and won't be retried, most likely the worker ran out of resources, e.g. memory or storage.
775
775
- ` SYSTEM_FAILURE ` : Task has failed to complete, due to an error in the system
776
- - ` DELAYED ` : Task has been scheduled to run at a specific time
777
- - ` EXPIRED ` : Task has expired and won't be executed
778
- - ` TIMED_OUT ` : Task has reached it's maxDuration and has been stopped
776
+ - ` DELAYED ` : Task has been scheduled to run at a specific time.
777
+ - ` EXPIRED ` : Task has expired and won't be executed,
778
+ - ` TIMED_OUT ` : Task has reached its maxDuration and has been stopped.
779
779
780
780
We've removed the following statuses:
781
781
0 commit comments