catch (Exception ex) {
LOG.warn("Exception happened when pausing/unpausing/starting Bundle jobs", ex);
}
// start bundles as needed;
try {
jobList = jpaService.execute(new BundleJobsGetNeedStartJPAExecutor(d));
if (jobList != null) {
for (BundleJobBean bundleJob : jobList) {
bundleJob.setKickoffTime(d);
new BundleStartXCommand(bundleJob.getId()).call();
LOG.debug("Calling BundleStartXCommand for bundle job = " + bundleJob.getId());