Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions parsl/jobs/states.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class JobState(IntEnum):
"""Defines a set of states that a job can be in"""

UNKNOWN = 0
"""The batch provider is unable to determinate a state for this job"""
"""The batch provider is unable to determine a state for this job"""

PENDING = 1
""""This job is in the batch queue but has not started running"""
Expand Down Expand Up @@ -40,7 +40,7 @@ class JobState(IntEnum):
"""This job is held/suspended in the batch system"""

MISSING = 8
"""This job has reached a terminal state without the resources(managers/workers)
"""This job has reached a terminal state without the resources (managers/workers)
launched in the job connecting back to the Executor. This state is set by HTEX
when it is able to infer that the block failed to start workers for eg due to
bad worker environment or network connectivity issues.
Expand Down