Commit 67959beb by huangfusuper

java -jar的命令参数处理

parent 3bbfb1c0
...@@ -167,8 +167,9 @@ public class RunRecordingAndJobTaskServiceImpl implements RunRecordingAndJobTask ...@@ -167,8 +167,9 @@ public class RunRecordingAndJobTaskServiceImpl implements RunRecordingAndJobTask
task.setFlowName(runRecording.getFlowName()); task.setFlowName(runRecording.getFlowName());
if(repair) { if(repair) {
task.setOperator(jobTask.getOperator()); task.setOperator(jobTask.getOperator());
task.setScheduleType(jobTask.getScheduleType());
} }
task.setScheduleType(jobTask.getScheduleType());
return task; return task;
}).collect(Collectors.toList()); }).collect(Collectors.toList());
jobTaskService.saveJobTasks(jobTasks); jobTaskService.saveJobTasks(jobTasks);
......
Markdown is supported
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