Skip to content
Snippets Groups Projects
Commit 72805fe3 authored by Jessica Severin's avatar Jessica Severin
Browse files

modified determine_status to allow case where all the jobs of a particular

analysis have failed.
parent faead1e0
No related branches found
No related tags found
No related merge requests found
......@@ -157,7 +157,7 @@ sub determine_status {
my $self = shift;
if($self->status ne 'BLOCKED') {
if($self->done_job_count>0 and $self->unclaimed_job_count == 0 and
if($self->unclaimed_job_count == 0 and
$self->total_job_count == $self->done_job_count + $self->failed_job_count) {
$self->status('DONE');
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment