From a50735c61cb762361abce8bb581ca1c9ce231ff1 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Mon, 7 Oct 2024 09:16:59 +0000 Subject: [PATCH] Bug 38104: Adjust number of seconds in UsageStats::NeedUpdate Content-Type: text/plain; charset=utf-8 The current interval between two HEA updates is hardcoded to 2592000 seconds, i.e. 30 days. This should be a bit lower to compensate for shorter months (Feb) or a small difference in execution time under cron. This patch adjusts the 30 days to 27 days. This allows us to not miss February too. Note that if you set it to 28 days, a few minutes difference could already cause a HEA skip too. Test plan: Enable pref UsageStats. Check pref UsageStatsLastUpdateTime (under Local use). Keep the value X somewhere. (Don't worry if it was empty.) You can convert this value X with: perl -MPOSIX -e 'print POSIX::strftime("%Y-%m-%d %H:%M:%S\n", localtime(X) )' The current time is shown in seconds with: perl -e'print time()' Enter a value like 1234 in UsageStatsLastUpdateTime. This should trigger an update normally. Run perl -MC4::UsageStats -e'print C4::UsageStats::NeedUpdate()' This should print 1. Now put the current time in seconds in the pref (see above). Run perl -MC4::UsageStats -e'print C4::UsageStats::NeedUpdate()' This should print 0. [BONUS] Test with a value now - 26 days, now - 28 days. Temporarily clear the pref. Run again. Should print 1 again. Restore pref value. Disable UsageStats if it was not enabled. Signed-off-by: Marcel de Rooy --- C4/UsageStats.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/C4/UsageStats.pm b/C4/UsageStats.pm index 37b4a76ec4..1f5fef929c 100644 --- a/C4/UsageStats.pm +++ b/C4/UsageStats.pm @@ -25,6 +25,8 @@ use JSON qw( decode_json encode_json ); use Koha::Libraries; +use constant MIN_INTERVAL_BETWEEN_RUNS => 2332800; # 27 days * 24 hrs * 60 min * 60 sec + =head1 NAME C4::UsageStats @@ -51,7 +53,7 @@ sub NeedUpdate { my $now = strftime( "%s", localtime ); # Need to launch cron. - return 1 if $now - $lastupdated >= 2592000; + return 1 if $now - $lastupdated > MIN_INTERVAL_BETWEEN_RUNS; # Data don't need to be updated return 0; -- 2.39.5