[open-ils-commits] ***SPAM*** [GIT] Evergreen ILS branch rel_2_6 updated. 90a9320784ae33cafe1e93fd2d14f14e36f01cd1

Evergreen Git git at git.evergreen-ils.org
Fri Jul 18 16:05:18 EDT 2014


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_6 has been updated
       via  90a9320784ae33cafe1e93fd2d14f14e36f01cd1 (commit)
      from  c10be23574c84c49359d0adbeeee9c86554accb6 (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 90a9320784ae33cafe1e93fd2d14f14e36f01cd1
Author: Mike Rylander <mrylander at gmail.com>
Date:   Mon Jul 14 14:57:38 2014 -0400

    LP#1341703 Thinko in Batch Edit (hidden by older OpenSRFs)
    
    There's a bug on line 272 of O::A::Cat.pm where we called a non-existent
    method named respond_complete on the invocant object. Instead, we need to
    call that on the client object (spelled $conn in this method). Batch bib
    edit won't work on new OpenSRF's until this is fixed.
    
    Signed-off-by: Mike Rylander <mrylander at gmail.com>
    Signed-off-by: Bill Erickson <berick at esilibrary.com>

diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/Cat.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/Cat.pm
index 1057d71..f4b9f11 100644
--- a/Open-ILS/src/perlmods/lib/OpenILS/Application/Cat.pm
+++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/Cat.pm
@@ -266,7 +266,7 @@ sub template_overlay_container {
     my $responses = [];
     my $some_failed = 0;
 
-    $self->respond_complete(
+    $conn->respond_complete(
         $actor->request('open-ils.actor.anon_cache.set_value', $auth, res_list => $responses)->gather(1)
     ) if ($actor);
 

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

Summary of changes:
 .../src/perlmods/lib/OpenILS/Application/Cat.pm    |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list