From 2e99b78413c6bf6f8090b0dfbe80a64f43f6d70e Mon Sep 17 00:00:00 2001 From: miker Date: Fri, 27 Jul 2007 16:58:06 +0000 Subject: [PATCH] returning a status git-svn-id: svn://svn.open-ils.org/ILS/trunk@7595 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/src/perlmods/OpenILS/WWW/Exporter.pm | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Open-ILS/src/perlmods/OpenILS/WWW/Exporter.pm b/Open-ILS/src/perlmods/OpenILS/WWW/Exporter.pm index b41b635450..dda6626329 100644 --- a/Open-ILS/src/perlmods/OpenILS/WWW/Exporter.pm +++ b/Open-ILS/src/perlmods/OpenILS/WWW/Exporter.pm @@ -93,7 +93,6 @@ Content-type: application/xml my $flesh = {}; if ($holdings) { - print STDERR "Retrieving Org Units ... "; my $r = $ses->request( 'open-ils.cstore.direct.actor.org_unit.search', { id => { '!=' => undef } } ); while (my $o = $r->recv) { @@ -103,9 +102,7 @@ Content-type: application/xml $orgs{$o->id} = $o; } $r->finish; - print STDERR "OK\n"; - print STDERR "Retrieving Shelving locations ... "; $r = $ses->request( 'open-ils.cstore.direct.asset.copy_location.search', { id => { '!=' => undef } } ); while (my $s = $r->recv) { @@ -115,7 +112,6 @@ Content-type: application/xml $shelves{$s->id} = $s; } $r->finish; - print STDERR "OK\n"; $flesh = { flesh => 2, flesh_fields => { bre => [ 'call_numbers' ], acn => [ 'copies' ] } }; } @@ -211,6 +207,8 @@ Content-type: application/xml print "\n" if ($format eq 'XML'); + return 200; + } 1; -- 2.11.0