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

added back in the $self->print_worker(); which will show up in the worker.out file

added a new debug printing of each job as such
  job_id=9050 blast_1_DEFAULT(17) retry=0 input_id='982'
if the worker has debug turned on
parent 357e8e75
No related branches found
No related tags found
No related merge requests found
......@@ -398,6 +398,7 @@ sub run
open STDOUT, ">&WORKER_STDOUT";
open STDERR, ">&WORKER_STDERR";
}
$self->print_worker();
$self->db->dbc->disconnect_when_inactive(0);
......@@ -424,7 +425,8 @@ sub run
}
foreach my $job (@{$jobs}) {
$job->print_job if($self->debug);
$self->redirect_job_output($job);
$self->run_module_with_job($job);
$self->close_and_update_job_output($job);
......
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