LOG.info("Running bundle status service from last instance time = "
+ DateUtils.convertDateToString(lastInstanceStartTime));
// this is not the first instance, we should only check jobs that have actions been
// updated >= start time of last service run;
List<BundleActionBean> actionList = jpaService
.execute(new BundleActionsGetByLastModifiedTimeJPAExecutor(lastInstanceStartTime));
Set<String> bundleIds = new HashSet<String>();
for (BundleActionBean action : actionList) {
bundleIds.add(action.getBundleId());
}
pendingJobCheckList = new ArrayList<BundleJobBean>();