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

needed to add check if job_limit is defined to smart batch_size code

parent 83e14500
No related branches found
No related tags found
No related merge requests found
......@@ -294,7 +294,7 @@ sub batch_size {
$stats->update;
}
my $batch_size = $self->analysis->stats->batch_size;
if($self->job_limit < $batch_size) {
if($self->job_limit and ($self->job_limit < $batch_size)) {
$batch_size = $self->job_limit;
}
return $batch_size;
......
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