Logger.warn("Not running cron job. Cron disabled. Path: %s", jobPath);
response.status = 503;
return;
}
Job job = null;
try {
String className = getJobClassName(jobPath);
job = ReflectionUtils.newInstance(Job.class, className);
} catch (Exception e) {
Logger.error(e, "CronManager failed to instantiate: %s", jobPath);