Skip to content
Snippets Groups Projects
Commit 4a6bcc9d authored by Abel Ureta-Vidal's avatar Abel Ureta-Vidal
Browse files

In run_autonomously method, updated a queen method call to...

In run_autonomously method, updated a queen method call to print_running_worker_status. It was wrongly print_worker_status
parent b9736aa7
No related branches found
No related tags found
No related merge requests found
......@@ -268,7 +268,7 @@ sub run_autonomously {
}
$queen->print_hive_status() if($self->{'show_analysis_stats'});
$queen->print_worker_status() if($self->{'show_worker_stats'});
$queen->print_running_worker_status() if($self->{'show_worker_stats'});
$count = $worker_limit if($count>$worker_limit);
......
......@@ -306,7 +306,7 @@ sub run_autonomously {
}
$queen->print_hive_status() if($self->{'show_analysis_stats'});
$queen->print_worker_status() if($self->{'show_worker_stats'});
$queen->print_running_worker_status() if($self->{'show_worker_stats'});
$count = $worker_limit if($count>$worker_limit);
......
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