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
Today batch_jobs returns a counts of the jobs in the running state and an aggregate count of the jobs in the completed, cancelled and crashed states. It also returns a list of ids of finished jobs in the batch.
This method should be updated to match the formal states defined in #960. The list of job ids should also be removed from the output. This way it's possible to check the status of a batch without getting a large response, and the job ids are available from the batch_domains method when you need them.
Outputs parameters to remove:
The number of finished tests.
The list of job ids of finished jobs in this batch.
Outputs parameters to add:
waiting_count - A non-negative integer. The number of waiting jobs in the batch.
completed_count - A non-negative integer. The number of completed jobs in the batch.
cancelled_count - A non-negative integer. The number of cancelled jobs in the batch.
crashed_count - A non-negative integer. The number of crashed jobs in the batch.
Today batch_jobs returns a counts of the jobs in the running state and an aggregate count of the jobs in the completed, cancelled and crashed states. It also returns a list of ids of finished jobs in the batch.
This method should be updated to match the formal states defined in #960. The list of job ids should also be removed from the output. This way it's possible to check the status of a batch without getting a large response, and the job ids are available from the batch_domains method when you need them.
Outputs parameters to remove:
Outputs parameters to add:
waiting_count
- A non-negative integer. The number of waiting jobs in the batch.completed_count
- A non-negative integer. The number of completed jobs in the batch.cancelled_count
- A non-negative integer. The number of cancelled jobs in the batch.crashed_count
- A non-negative integer. The number of crashed jobs in the batch.Stabilization
Tracking issue
Affected interfaces
Incompatibly changed:
Dependencies
Overlapping proposals
The text was updated successfully, but these errors were encountered: