From ed2310ad88bebe1f8be9cf3764ec11503c25f74f Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Sun, 25 Sep 2011 16:55:38 -0400 Subject: [PATCH 1/1] 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 4e539142d4..2549222c18 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; -- 2.43.2