Skip to content
Snippets Groups Projects
Commit 8862bd85 authored by Nathan Hertz's avatar Nathan Hertz
Browse files

Added WorkflowRequestState enum

parent e420dc3f
No related branches found
No related tags found
No related merge requests found
......@@ -146,7 +146,18 @@ class CapabilityEventType(Enum):
LargeAllocDenial = 5
class RequestState(Enum):
class WorkflowRequestState(Enum):
"""
Enum that specifies the states a WorkflowRequest can find itself in
"""
Complete = 0
Created = 1
Running = 2
Failed = -1
class CapabilityRequestState(Enum):
"""
Enum that specifies the states that a capability request can be in
"""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment