put the null return back, in case that is important on the client side
authormiker <miker@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Sun, 18 Jul 2010 14:44:18 +0000 (14:44 +0000)
committermiker <miker@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Sun, 18 Jul 2010 14:44:18 +0000 (14:44 +0000)
git-svn-id: svn://svn.open-ils.org/ILS/trunk@16973 dcc99617-32d9-48b4-a31d-7c20da2025e4

Open-ILS/src/perlmods/OpenILS/Application/Vandelay.pm

index 7c146c4..f39cb5f 100644 (file)
@@ -790,7 +790,8 @@ sub import_record_list_impl {
        $e->rollback;
     }
 
-    return {total => $total, progress => $count};
+    $conn->respond({total => $total, progress => $count});
+    return undef;
 }