try {
List<String> jobids = jpaService.execute(new CoordActionsGetReadyGroupbyJobIDJPAExecutor(coordOlderThan));
jobids = Services.get().get(JobsConcurrencyService.class).getJobIdsForThisServer(jobids);
msg.append(", COORD_READY_JOBS : " + jobids.size());
for (String jobid : jobids) {
queueCallable(new CoordActionReadyXCommand(jobid));
log.info("Recover READY coord actions for jobid :" + jobid);
}
}
catch (Exception ex) {