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@esilibrary.com>
Signed-off-by: Bill Erickson <berick@esilibrary.com>
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;