[open-ils-commits] [GIT] Evergreen ILS branch master updated. 89f763b5c92314b9a8db8024e0680f3808e99117

Evergreen Git git at git.evergreen-ils.org
Wed May 17 08:33:47 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, master has been updated
       via  89f763b5c92314b9a8db8024e0680f3808e99117 (commit)
      from  ddd5d4519b4ea8d9f0f5eb3e1b0790d412c7716f (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 89f763b5c92314b9a8db8024e0680f3808e99117
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