[Rt-commit] r8345 - in rt/branches/3.7-EXPERIMENTAL-RTIR-2.0: sbin

ruz at bestpractical.com ruz at bestpractical.com
Tue Jul 31 19:33:10 EDT 2007


Author: ruz
Date: Tue Jul 31 19:33:10 2007
New Revision: 8345

Modified:
   rt/branches/3.7-EXPERIMENTAL-RTIR-2.0/   (props changed)
   rt/branches/3.7-EXPERIMENTAL-RTIR-2.0/sbin/rt-setup-database.in

Log:
 r8345 at cubic-pc (orig r8344):  ruz | 2007-08-01 03:32:21 +0400
 * we don't exit on errors in data, but go to next object


Modified: rt/branches/3.7-EXPERIMENTAL-RTIR-2.0/sbin/rt-setup-database.in
==============================================================================
--- rt/branches/3.7-EXPERIMENTAL-RTIR-2.0/sbin/rt-setup-database.in	(original)
+++ rt/branches/3.7-EXPERIMENTAL-RTIR-2.0/sbin/rt-setup-database.in	Tue Jul 31 19:33:10 2007
@@ -627,7 +627,7 @@
             my ($return,$msg) = $new_entry->Create(%$item);
             unless ($return) {
                 print "(Error: $msg)\n";
-                exit;
+                next;
             }
             print $return. ".";
         }
@@ -643,7 +643,7 @@
             my ($return,$msg) = $new_entry->Create(%$item);
             unless ($return) {
                 print "(Error: $msg)\n";
-                exit;
+                next;
             }
             print $return. ".";
         }


More information about the Rt-commit mailing list