From: erickson Date: Thu, 11 Mar 2010 21:43:25 +0000 (+0000) Subject: allow marc file attributes to be passed directly to vandelay spooler, bypass the... X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=e64ace1702f0da09159faaba3d39bb58d43b4fe3;p=evergreen%2Fmasslnc.git allow marc file attributes to be passed directly to vandelay spooler, bypass the cache git-svn-id: svn://svn.open-ils.org/ILS/trunk@15809 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/perlmods/OpenILS/Application/Vandelay.pm b/Open-ILS/src/perlmods/OpenILS/Application/Vandelay.pm index 29509bf9d8..5d954258c0 100644 --- a/Open-ILS/src/perlmods/OpenILS/Application/Vandelay.pm +++ b/Open-ILS/src/perlmods/OpenILS/Application/Vandelay.pm @@ -199,8 +199,11 @@ sub process_spool { my $self = shift; my $client = shift; my $auth = shift; - my $fingerprint = shift; + my $fingerprint = shift || ''; my $queue_id = shift; + my $purpose = shift; + my $filename = shift; + my $bib_source = shift; my $e = new_editor(authtoken => $auth, xact => 1); return $e->die_event unless $e->checkauth; @@ -222,10 +225,12 @@ sub process_spool { my $cache = new OpenSRF::Utils::Cache(); - my $data = $cache->get_cache('vandelay_import_spool_' . $fingerprint); - my $purpose = $data->{purpose}; - my $filename = $data->{path}; - my $bib_source = $data->{bib_source}; + if($fingerprint) { + my $data = $cache->get_cache('vandelay_import_spool_' . $fingerprint); + $purpose = $data->{purpose}; + $filename = $data->{path}; + $bib_source = $data->{bib_source}; + } unless(-r $filename) { $logger->error("unable to read MARC file $filename"); @@ -247,7 +252,7 @@ sub process_spool { my $r = -1; while (try { $r = $batch->next } otherwise { $r = -1 }) { if ($r == -1) { - $logger->warn("Proccessing of record $count in set $fingerprint failed. Skipping this record"); + $logger->warn("Proccessing of record $count in set $filename failed. Skipping this record"); $count++; } @@ -275,7 +280,7 @@ sub process_spool { $e->commit; unlink($filename); - $cache->delete_cache('vandelay_import_spool_' . $fingerprint); + $cache->delete_cache('vandelay_import_spool_' . $fingerprint) if $fingerprint; return undef; }