[Rt-commit] r8346 - in rt/branches/3.7-EXPERIMENTAL-RTIR-2.2: .
ruz at bestpractical.com
ruz at bestpractical.com
Tue Jul 31 19:33:43 EDT 2007
Author: ruz
Date: Tue Jul 31 19:33:43 2007
New Revision: 8346
Modified:
rt/branches/3.7-EXPERIMENTAL-RTIR-2.2/ (props changed)
rt/branches/3.7-EXPERIMENTAL-RTIR-2.2/sbin/rt-setup-database.in
Log:
r8346 at cubic-pc (orig r8345): ruz | 2007-08-01 03:33:10 +0400
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.2/sbin/rt-setup-database.in
==============================================================================
--- rt/branches/3.7-EXPERIMENTAL-RTIR-2.2/sbin/rt-setup-database.in (original)
+++ rt/branches/3.7-EXPERIMENTAL-RTIR-2.2/sbin/rt-setup-database.in Tue Jul 31 19:33:43 2007
@@ -537,7 +537,7 @@
my ($return,$msg) = $new_entry->Create(%$item);
unless ($return) {
print "(Error: $msg)\n";
- exit;
+ next;
}
print $return. ".";
}
@@ -553,7 +553,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