Skip to content

Commit

Permalink
fix: KILLED is a final job state
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisburr authored Sep 17, 2024
1 parent 41c93fa commit 2b3a7cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DIRAC/WorkloadManagementSystem/Client/JobStatus.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
]

# Job States when the payload work has finished
JOB_FINAL_STATES = [DONE, COMPLETED, FAILED]
JOB_FINAL_STATES = [DONE, COMPLETED, FAILED, KILLED]

# WMS internal job States indicating the job object won't be updated
JOB_REALLY_FINAL_STATES = [DELETED]
Expand Down

0 comments on commit 2b3a7cd

Please sign in to comment.