boulderopalscaleup.jobs.JobStatus

class boulderopalscaleup.jobs.JobStatus(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)

Status of a job.

Variables

  • PENDING – Job is queued and waiting to be executed.
  • IN_PROGRESS – Job is currently executing.
  • CANCELLED – Job was cancelled before completion.
  • COMPLETED – Job finished successfully.
  • ERROR – Job terminated due to an error.
  • INTERRUPTED – Job was interrupted during execution.

Was this useful?