[open-ils-commits] [GIT] Evergreen ILS branch rel_2_12 updated. bef0a805e64cd113ff3073db9f46a5bc2afdafe6

Evergreen Git git at git.evergreen-ils.org
Wed May 17 08:33:48 EDT 2017


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".

The branch, rel_2_12 has been updated
       via  bef0a805e64cd113ff3073db9f46a5bc2afdafe6 (commit)
      from  0ef165435f41df5a53db9159554cd4dd2f985200 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit bef0a805e64cd113ff3073db9f46a5bc2afdafe6
Author: Josh Stompro <stomproj at larl.org>
Date:   Wed Dec 21 13:57:32 2016 -0600

    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 <stomproj at larl.org>
    Signed-off-by: Galen Charlton <gmc at equinoxinitiative.org>

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 6956283..c5da523 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;
         }
     }
 

-----------------------------------------------------------------------

Summary of changes:
 .../src/support-scripts/rollover_phone_to_print.pl |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list