From: Galen Charlton Date: Sun, 25 Sep 2011 20:55:38 +0000 (-0400) Subject: lp859190: make marc_stream_import always import non-matches X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=fb606aec94f57d31c4620c9828121e2e5c137438;p=working%2FEvergreen.git 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 Signed-off-by: Bill Erickson --- diff --git a/Open-ILS/src/support-scripts/marc_stream_importer.pl b/Open-ILS/src/support-scripts/marc_stream_importer.pl index 69526af684..7c95be685c 100755 --- a/Open-ILS/src/support-scripts/marc_stream_importer.pl +++ b/Open-ILS/src/support-scripts/marc_stream_importer.pl @@ -242,7 +242,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;