Commit 4b845b74 authored by Zheng Jie's avatar Zheng Jie
Browse files

[Bug修复](master): update ExecutionJob.java

close https://github.com/elunez/eladmin/issues/620
parent 10dcf6e1
......@@ -82,7 +82,7 @@ public class ExecutionJob extends QuartzJobBean {
System.out.println("任务执行完毕,任务名称:" + quartzJob.getJobName() + ", 执行时间:" + times + "毫秒");
System.out.println("--------------------------------------------------------------");
// 判断是否存在子任务
if(quartzJob.getSubTask() != null){
if(StringUtils.isNotBlank(quartzJob.getSubTask())){
String[] tasks = quartzJob.getSubTask().split("[,,]");
// 执行子任务
quartzJobService.executionSubJob(tasks);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment