From ea4d8b9bcaa982dc06292c8bc72c9ee76ca94f0f Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Fri, 24 Mar 2017 15:05:46 -0400 Subject: [PATCH] LP#1675899 Targeter --retarget-interval override fix Treat the hold targeter --retarget-interval command line option as an option containing a string value (the interval) instead of a boolean. Signed-off-by: Bill Erickson Signed-off-by: Galen Charlton --- Open-ILS/src/support-scripts/hold_targeter_v2.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/src/support-scripts/hold_targeter_v2.pl b/Open-ILS/src/support-scripts/hold_targeter_v2.pl index 7f342ef6cf..06d1c3a501 100755 --- a/Open-ILS/src/support-scripts/hold_targeter_v2.pl +++ b/Open-ILS/src/support-scripts/hold_targeter_v2.pl @@ -34,7 +34,7 @@ GetOptions( 'verbose' => \$verbose, 'target-all' => \$target_all, 'skip-viable' => \$skip_viable, - 'retarget-interval' => \$retarget_interval, + 'retarget-interval=s' => \$retarget_interval, 'parallel-init-sleep=i' => \$parallel_init_sleep, 'help' => \$help ) || die "\nSee --help for more\n"; -- 2.43.2