[open-ils-commits] r13249 - trunk/Open-ILS/src/perlmods/OpenILS/Application/Circ (miker)

svn at svn.open-ils.org svn at svn.open-ils.org
Wed May 27 15:21:32 EDT 2009


Author: miker
Date: 2009-05-27 15:21:28 -0400 (Wed, 27 May 2009)
New Revision: 13249

Modified:
   trunk/Open-ILS/src/perlmods/OpenILS/Application/Circ/Circulate.pm
Log:
silent failure regression in renew due to refactoring; spotted by Bill Ott of GRPL

Modified: trunk/Open-ILS/src/perlmods/OpenILS/Application/Circ/Circulate.pm
===================================================================
--- trunk/Open-ILS/src/perlmods/OpenILS/Application/Circ/Circulate.pm	2009-05-27 03:56:59 UTC (rev 13248)
+++ trunk/Open-ILS/src/perlmods/OpenILS/Application/Circ/Circulate.pm	2009-05-27 19:21:28 UTC (rev 13249)
@@ -2425,7 +2425,7 @@
         $runner->load($self->circ_permit_renew);
         my $result = $runner->run or 
             throw OpenSRF::EX::ERROR ("Circ Permit Renew Script Died: $@");
-        my $events = $result->{events};
+        $events = $result->{events};
     }
 
     $logger->activity("ciculator: circ_permit_renew for user ".



More information about the open-ils-commits mailing list