job = jobSession.loadJob(job.getId());
log.debug("executing " + job);
try {
if (job.execute(jbpmContext)) {
jobSession.deleteJob(job);
}
}
catch (Exception e) {
log.debug("exception while executing " + job, e);
if (!DbPersistenceService.isPersistenceException(e)) {