Skip to content

Commit

Permalink
Torque held now OK
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeDacre committed Feb 9, 2018
1 parent e1b5166 commit a7eb2b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fyrd/batch_systems/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
# Define job states all batch systems must return one of these states
GOOD_STATES = ['complete', 'completed', 'special_exit']
ACTIVE_STATES = ['configuring', 'completing', 'pending',
'running']
'held', 'running']
BAD_STATES = ['boot_fail', 'cancelled', 'failed', 'killed',
'node_fail', 'timeout', 'disappeared']
UNCERTAIN_STATES = ['hold', 'preempted', 'stopped',
UNCERTAIN_STATES = ['preempted', 'stopped',
'suspended']
ALL_STATES = GOOD_STATES + ACTIVE_STATES + BAD_STATES + UNCERTAIN_STATES
DONE_STATES = GOOD_STATES + BAD_STATES
Expand Down

0 comments on commit a7eb2b8

Please sign in to comment.