Skip to content

Commit

Permalink
[IO] Fixed bug introduced in 10a9216
Browse files Browse the repository at this point in the history
  • Loading branch information
bluke authored and npf committed Apr 8, 2024
1 parent bcc1972 commit 3012927
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sources/core/common-libs/lib/OAR/IO.pm
Original file line number Diff line number Diff line change
Expand Up @@ -10126,7 +10126,7 @@ sub format_stats(\@\@) {
my @start = shift;
my @end = shift;
my ($time, $usec, $ssec, $cusec, $cssec, $trans) = array_substract(@end, @start);
my ($time, $usec, $ssec, $cusec, $cssec) = map sprintf("%.2f",$_), ($time, $usec, $ssec, $cusec, $cssec);
($time, $usec, $ssec, $cusec, $cssec) = map sprintf("%.2f",$_), ($time, $usec, $ssec, $cusec, $cssec);
return "elapsed:${time}s user:${usec}s sys:${ssec}s child_user:${cusec}s child_sys:${cssec}s ; approx ${trans} DB transactions";
}

Expand Down

0 comments on commit 3012927

Please sign in to comment.