Skip to content
Snippets Groups Projects
Commit 3aae2832 authored by Ian's avatar Ian
Browse files

fix: changed order of pending states to match state progress

parent e021b7b0
No related branches found
No related tags found
No related merge requests found
...@@ -6,7 +6,7 @@ from .Job import Job ...@@ -6,7 +6,7 @@ from .Job import Job
class JobLedger: class JobLedger:
"""Tracks all job state in a single coordinated structure""" """Tracks all job state in a single coordinated structure"""
PENDING_STATES = ["Accepted", "Running", "Offline", "Submitted"] PENDING_STATES = ["Submitted", "Accepted", "Running", "Offline"]
FINAL_STATES = ["Succeeded", "Failed", "Deleted"] FINAL_STATES = ["Succeeded", "Failed", "Deleted"]
def __init__(self): def __init__(self):
......
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