From e6f25d04a49cbce22970340bd5d0323ff8b37d9b Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Fri, 26 Apr 2013 12:59:33 -0400 Subject: [PATCH] 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 --- Open-ILS/src/support-scripts/action_trigger_runner.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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} ] } -- 2.11.0