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

fixed total hive completion percent so that it doesn't round up

parent a922aa57
No related branches found
No related tags found
No related merge requests found
......@@ -458,8 +458,8 @@ sub get_hive_progress
my ($done, $total) = $sth->fetchrow_array();
$sth->finish;
my $completed = 0.0;
$completed = ($done/$total * 100) if($total>0);
printf("hive %1.2f%% complete (%d done / %d total)\n", $completed, $done, $total);
$completed = ((100.0 * $done)/$total) if($total>0);
printf("hive %1.3f%% complete (%d done / %d total)\n", $completed, $done, $total);
return $done, $total;
}
......
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