List<WorkflowActionBean> actions = null;
try {
actions = jpaService.execute(new WorkflowActionsGetPendingJPAExecutor(olderThan));
}
catch (JPAExecutorException ex) {
log.warn("Exception while reading pending actions from storage", ex);
}
//log.debug("QUEUING[{0}] pending wf actions for potential recovery", actions.size());
msg.append(" WF_ACTIONS " + actions.size());
for (WorkflowActionBean action : actions) {