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

removed deprecated RunnableDB batch_size method call

parent a7f94d54
No related branches found
No related tags found
No related merge requests found
......@@ -259,10 +259,7 @@ sub print_worker {
sub batch_size {
my $self = shift;
if(@_) { $self->{'_batch_size'} = shift; }
do {
my $runObj = $self->analysis->runnableDB;
$self->{'_batch_size'} = $runObj->batch_size if($runObj);
} unless($self->{'_batch_size'});
$self->{'_batch_size'}=1 unless($self->{'_batch_size'});
return $self->{'_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