From: Bill Erickson Date: Fri, 26 Apr 2013 16:59:33 +0000 (-0400) Subject: LP 1169193 Bypass longoverdue w/ default A/T runner X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=91e7fe44a8ca68b126715b767dd0cdb361edf2e3;p=evergreen%2Fequinox.git LP 1169193 Bypass longoverdue w/ default A/T runner Avoid processing LONGOVERDUE circulations in the default action_trigger_runner.pl filter. When no custom filters are used, the script will provide it's own default filter for circulation-based hooks. This change ensure that when the default filter is in use, the script will not attempt to process longoverdue circulations, since they have already been processed (which is how they became longoverdue in the first place). Signed-off-by: Bill Erickson Signed-off-by: Jason Stephenson --- diff --git a/Open-ILS/src/support-scripts/action_trigger_runner.pl b/Open-ILS/src/support-scripts/action_trigger_runner.pl index 0225518315..9e219f0fbe 100755 --- a/Open-ILS/src/support-scripts/action_trigger_runner.pl +++ b/Open-ILS/src/support-scripts/action_trigger_runner.pl @@ -72,7 +72,7 @@ my $hook_handlers = { filter => { checkin_time => undef, '-or' => [ - {stop_fines => ['MAXFINES', 'LONGOVERDUE']}, + {stop_fines => ['MAXFINES']}, {stop_fines => undef} ] }