From: miker Date: Sun, 18 Jul 2010 14:44:18 +0000 (+0000) Subject: put the null return back, in case that is important on the client side X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=8879e4ae28762f03fa12915f02715106205ea66c;p=evergreen%2Fmasslnc.git put the null return back, in case that is important on the client side git-svn-id: svn://svn.open-ils.org/ILS/trunk@16973 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 7c146c4e4d..f39cb5f82f 100644 --- a/Open-ILS/src/perlmods/OpenILS/Application/Vandelay.pm +++ b/Open-ILS/src/perlmods/OpenILS/Application/Vandelay.pm @@ -790,7 +790,8 @@ sub import_record_list_impl { $e->rollback; } - return {total => $total, progress => $count}; + $conn->respond({total => $total, progress => $count}); + return undef; }