Skip to content

Commit

Permalink
Merge pull request nipy#1423 from akeshavan/ucsf_sge
Browse files Browse the repository at this point in the history
no zombies here
  • Loading branch information
satra committed Apr 16, 2016
2 parents e99d34d + 4005831 commit 252a2dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nipype/pipeline/plugins/sge.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def is_initializing(self):
return self._job_queue_state == "initializing"

def is_zombie(self):
return self._job_queue_state == "zombie"
return self._job_queue_state == "zombie" or self._job_queue_state == "finished"

def is_running(self):
return self._job_queue_state == "running"
Expand Down

0 comments on commit 252a2dd

Please sign in to comment.