[open-ils-commits] [GIT] Evergreen ILS branch master updated. 38ed96cab162e58dfc089d00a20e60336693b44a

Evergreen Git git at git.evergreen-ils.org
Wed Aug 10 10:27:52 EDT 2011


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  38ed96cab162e58dfc089d00a20e60336693b44a (commit)
      from  bfceae7dfe2d8bb3dcd37e56b541a69b9a99738c (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 38ed96cab162e58dfc089d00a20e60336693b44a
Author: Bill Erickson <berick at esilibrary.com>
Date:   Wed Aug 10 10:23:32 2011 -0400

    Stream records to ML for Vandelay queue export
    
    Since queued records, with their marcxml blobs, are fairly large, avoid
    fetching them atomically when possible.
    
    Signed-off-by: Bill Erickson <berick at esilibrary.com>

diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/Vandelay.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/Vandelay.pm
index 4a3d345..2b563a8 100644
--- a/Open-ILS/src/perlmods/lib/OpenILS/Application/Vandelay.pm
+++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/Vandelay.pm
@@ -521,7 +521,7 @@ sub retrieve_queued_records {
         'search_vandelay_queued_bib_record' : 'search_vandelay_queued_authority_record';
 
     if ($self->api_name =~ /export/) {
-        my $rec_list = $e->$search({id => [map { $_->{id} } @$record_ids]});
+        my $rec_list = $e->$search({id => [map { $_->{id} } @$record_ids]}, {substream => 1});
         if ($self->api_name =~ /print/) {
 
             $e->rollback;

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

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


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list