Bugzilla – Attachment 125133 Details for
Bug 29078
Division by zero in touch_all scripts
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 29078: Resolve division by zero in touch_all scripts
Bug-29078-Resolve-division-by-zero-in-touchall-scr.patch (text/plain), 1.99 KB, created by
Marcel de Rooy
on 2021-09-22 14:11:14 UTC
(
hide
)
Description:
Bug 29078: Resolve division by zero in touch_all scripts
Filename:
MIME Type:
Creator:
Marcel de Rooy
Created:
2021-09-22 14:11:14 UTC
Size:
1.99 KB
patch
obsolete
>From b37ea840c0782dad862c06572df09b9559c110e6 Mon Sep 17 00:00:00 2001 >From: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >Date: Wed, 22 Sep 2021 14:06:07 +0000 >Subject: [PATCH] Bug 29078: Resolve division by zero in touch_all scripts >Content-Type: text/plain; charset=utf-8 > >Illegal division by zero at misc/maintenance/touch_all_biblios.pl line 102. > >Trivial fix. >Funny that the percentage is not even shown without verbose flag ;) > >Test plan: >Run misc/maintenance/touch_all_biblios.pl -where 'biblionumber<0' >You should now see: >Good: 0, Bad: 0 (of 0) in 0 seconds > >Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >--- > misc/maintenance/touch_all_biblios.pl | 2 +- > misc/maintenance/touch_all_items.pl | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > >diff --git a/misc/maintenance/touch_all_biblios.pl b/misc/maintenance/touch_all_biblios.pl >index be349cfb19..2c725ae5e8 100755 >--- a/misc/maintenance/touch_all_biblios.pl >+++ b/misc/maintenance/touch_all_biblios.pl >@@ -101,7 +101,7 @@ close($fh); > # Benchmarking > my $endtime = time(); > my $time = $endtime-$startime; >-my $accuracy = ($goodcount / $totalcount) * 100; # this is a percentage >+my $accuracy = $totalcount ? ($goodcount / $totalcount) * 100 : 0; # this is a percentage > my $averagetime = 0; > $averagetime = $time / $totalcount if $totalcount; > print "Good: $goodcount, Bad: $badcount (of $totalcount) in $time seconds\n"; >diff --git a/misc/maintenance/touch_all_items.pl b/misc/maintenance/touch_all_items.pl >index 087914498e..c253959959 100755 >--- a/misc/maintenance/touch_all_items.pl >+++ b/misc/maintenance/touch_all_items.pl >@@ -109,7 +109,7 @@ close($fh); > # Benchmarking > my $endtime = time(); > my $time = $endtime-$startime; >-my $accuracy = ($goodcount / $totalcount) * 100; # this is a percentage >+my $accuracy = $totalcount ? ($goodcount / $totalcount) * 100 : 0; # this is a percentage > my $averagetime = 0; > $averagetime = $time / $totalcount if $totalcount; > print "Good: $goodcount, Bad: $badcount (of $totalcount) in $time seconds\n"; >-- >2.20.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 29078
:
125133
|
125275