[open-ils-commits] [GIT] Evergreen ILS branch rel_2_11 updated. 880800a73b627183ce3e73b7ce11362efe0ffdc8

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_11 has been updated
       via  880800a73b627183ce3e73b7ce11362efe0ffdc8 (commit)
      from  26416f73ddc56fca72982caa7b3648ee9403eab7 (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 880800a73b627183ce3e73b7ce11362efe0ffdc8
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