From fb606aec94f57d31c4620c9828121e2e5c137438 Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Sun, 25 Sep 2011 16:55:38 -0400 Subject: [PATCH] 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 --- Open-ILS/src/support-scripts/marc_stream_importer.pl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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; -- 2.11.0