From 8dd9c94c5772c7481632f20af0025a4bf1e2662b Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Thu, 13 Jun 2024 13:38:57 +0100 Subject: [PATCH] Bug 37037: (RM follow-up) Add hint at end of script run This patch adds a hint to the end of the script to notify the end user that they may need to run the build_holds_queue cronjob if they are using RealTimeHoldsQueue. Signed-off-by: Martin Renvoize --- misc/maintenance/touch_all_biblios.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/misc/maintenance/touch_all_biblios.pl b/misc/maintenance/touch_all_biblios.pl index 15155089d8..dd026137e1 100755 --- a/misc/maintenance/touch_all_biblios.pl +++ b/misc/maintenance/touch_all_biblios.pl @@ -102,6 +102,7 @@ my $averagetime = 0; $averagetime = $time / $totalcount if $totalcount; print "Good: $goodcount, Bad: $badcount (of $totalcount) in $time seconds\n"; printf "Accuracy: %.2f%%\nAverage time per record: %.6f seconds\n", $accuracy, $averagetime if (defined $verbose); +print "You may wish to run the build_holds_queue.pl script now if you are using RealTimeHoldsQueue\n" if $goodcount; =head1 NAME -- 2.39.5