Commit 55f0650f by guominglei

重跑时根据版本表信息查询依赖关系

parent f847f28e
...@@ -699,7 +699,7 @@ public class ApiFlowServiceImpl implements ApiFlowService { ...@@ -699,7 +699,7 @@ public class ApiFlowServiceImpl implements ApiFlowService {
waitingTaskList.add(waitingTask); waitingTaskList.add(waitingTask);
} }
//查询依赖于当前节点的下级节点 //查询依赖于当前节点的下级节点
List<NodeVersion> childNodeList = nodeVersionMapper.findSubNodeList(childNode.getNodeId()); List<NodeVersion> childNodeList = nodeVersionMapper.findSubNodeList(childNode.getNodeVersionId());
if (childNodeList != null && childNodeList.size() > 0){ if (childNodeList != null && childNodeList.size() > 0){
addDependNode(runId, triggerTime, waitingTaskList, childNodeList, userName, nodeIdSet, runNodeIdSet); addDependNode(runId, triggerTime, waitingTaskList, childNodeList, userName, nodeIdSet, runNodeIdSet);
} }
......
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