[open-ils-commits] [GIT] Evergreen ILS branch rel_2_1 updated. e400aadde56d7ef8390ab7f4f981201c676b0309

Evergreen Git git at git.evergreen-ils.org
Sun Sep 25 19:10:29 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, rel_2_1 has been updated
       via  e400aadde56d7ef8390ab7f4f981201c676b0309 (commit)
      from  cecf19e320d79ecb6c752eedf5533958730b5c49 (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 e400aadde56d7ef8390ab7f4f981201c676b0309
Author: Galen Charlton <gmc at esilibrary.com>
Date:   Sun Sep 25 16:55:38 2011 -0400

    lp859190: make marc_stream_import always import non-matches
    
    Fixes regression of (implicit, undocumented) functionality
    introduced in commit da3a45344205.  Current use case for
    the streaming MARC importer for OCLC Connexion exports assumes
    that non-matching records should always be added.
    
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>
    Signed-off-by: Bill Erickson <berick at esilibrary.com>

diff --git a/Open-ILS/src/support-scripts/marc_stream_importer.pl b/Open-ILS/src/support-scripts/marc_stream_importer.pl
index 4e53914..2549222 100755
--- a/Open-ILS/src/support-scripts/marc_stream_importer.pl
+++ b/Open-ILS/src/support-scripts/marc_stream_importer.pl
@@ -250,7 +250,10 @@ sub process_spool { # filename
 
 sub bib_queue_import {
     my $rec_ids = shift;
-    my $extra = {auto_overlay_exact => 1};
+    my $extra = {
+        auto_overlay_exact => 1,
+        import_no_match    => 1,
+    };
     $extra->{merge_profile} = $merge_profile if $merge_profile;
 
     my $req;

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

Summary of changes:
 .../src/support-scripts/marc_stream_importer.pl    |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list