bundleJob.setStatus(Job.Status.RUNNING);
}
for (BundleActionBean action : this.bundleActions) {
// queue coord change commands;
if (action.getStatus() != Job.Status.KILLED && action.getCoordId() != null) {
queue(new CoordChangeXCommand(action.getCoordId(), changeValue));
LOG.info("Queuing CoordChangeXCommand coord job = " + action.getCoordId() + " to change "
+ changeValue);
action.setPending(action.getPending() + 1);
jpaService.execute(new BundleActionUpdateJPAExecutor(action));
}