From 880800a73b627183ce3e73b7ce11362efe0ffdc8 Mon Sep 17 00:00:00 2001 From: Josh Stompro Date: Wed, 21 Dec 2016 13:57:32 -0600 Subject: [PATCH] LP#1650807: fix rollover_phone_to_print.pl to ack failed calls This patch fixes a bug in rollover_phone_to_print.pl that kept failed callfiles from being moved. The list of new event ID's that the script created was being sent to the mediator, which couldn't do anything with them. The original event ID's need to be sent to have those call files moved. Signed-off-by: Josh Stompro Signed-off-by: Galen Charlton --- Open-ILS/src/support-scripts/rollover_phone_to_print.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/src/support-scripts/rollover_phone_to_print.pl b/Open-ILS/src/support-scripts/rollover_phone_to_print.pl index 6956283fbe..c5da523f93 100755 --- a/Open-ILS/src/support-scripts/rollover_phone_to_print.pl +++ b/Open-ILS/src/support-scripts/rollover_phone_to_print.pl @@ -74,7 +74,7 @@ sub rollover_events_phone_to_print { $event->target )) { $logger->info("rollover created event $new_id from event " . $event->id); - push @$finished, $new_id; + push @$finished, $event->id; } } -- 2.11.0