# | Line 21 | Line 21 | class Killer(Actor): | |
---|---|---|
21 | if id not in common._db.nJobs("list"): | |
22 | common.logger.message("Warning: job # "+str(id)+" doesn't exists! Not possible to kill it.") | |
23 | else: | |
24 | < | if ( jStatus[id-1] in ['SS','R']): |
24 | > | if ( jStatus[id-1] in ['SS','R','S']): |
25 | toBeKilled.append(id) | |
26 | else: | |
27 | < | common.logger.message("Not possible to kill Job #"+str(id)+" : Status is "+human_status[id-1]) |
27 | > | common.logger.message("Not possible to kill Job #"+str(id)+" : Status is "+str(human_status[id-1])) |
28 | pass | |
29 | pass | |
30 |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |