Commit aaa05dc9 by guo_minglei@163.com

Merge remote-tracking branch 'origin/developer' into developer

parents 4f625a8d 46e550a9
...@@ -154,6 +154,8 @@ public class RunRecordingAndJobTaskServiceImpl implements RunRecordingAndJobTask ...@@ -154,6 +154,8 @@ public class RunRecordingAndJobTaskServiceImpl implements RunRecordingAndJobTask
log.info("-------查询等待节点成功,查询对应的等待节点成功,开始保存对应的等待节点{}-------",allByWaitId); log.info("-------查询等待节点成功,查询对应的等待节点成功,开始保存对应的等待节点{}-------",allByWaitId);
List<JobTask> jobTasks = allByWaitId.stream().map(waitingTask -> { List<JobTask> jobTasks = allByWaitId.stream().map(waitingTask -> {
JobTask target = new JobTask(); JobTask target = new JobTask();
target.setTriggerStatus("1");
target.setRunId(waitingRecord.getRunId());
BeanUtils.copyProperties(waitingTask, target); BeanUtils.copyProperties(waitingTask, target);
return target; return target;
}).collect(Collectors.toList()); }).collect(Collectors.toList());
......
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