|
|
|
@ -1200,7 +1200,11 @@ public abstract class JobStoreSupport implements JobStore, Constants {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (job == null) { |
|
|
|
|
job = retrieveJob(conn, newTrigger.getJobKey()); |
|
|
|
|
try { |
|
|
|
|
job = retrieveJob(conn, newTrigger.getJobKey()); |
|
|
|
|
} catch (JobPersistenceException e) { |
|
|
|
|
getLog().error(e.getMessage()); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
if (job == null) { |
|
|
|
|
throw new JobPersistenceException("The job (" |
|
|
|
@ -2983,7 +2987,6 @@ public abstract class JobStoreSupport implements JobStore, Constants {
|
|
|
|
|
} catch (SQLException sqle) { |
|
|
|
|
getLog().error("Unable to set trigger state to ERROR.", sqle); |
|
|
|
|
} |
|
|
|
|
throw jpe; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (trigger.getCalendarName() != null) { |
|
|
|
|