Compare commits

..

No commits in common. "a864752d8a0b0b6559521c2ad8639a965f367f8e" and "b3d49cc47ebeb161c90dcad2f48cfa9b722af964" have entirely different histories.

View File

@ -218,7 +218,9 @@ public class JobLauncherController {
return "Job " + jobName + " not found"; return "Job " + jobName + " not found";
} }
if (!"Y".equals(scheduler) && !"materialJob".equals(jobName) && !"commonCodeJob".equals(jobName) && !"specialNoteDispItemAdditionalJob".equals(jobName)) { if (!"Y".equals(scheduler)
&& !"materialJob".equals(jobName)
&& !"commonCodeJob".equals(jobName)) {
log.info("Scheduler disabled, skipping job {}", jobName); log.info("Scheduler disabled, skipping job {}", jobName);
return "Scheduler disabled"; return "Scheduler disabled";
} }