Commit b6294778 by huangfusuper

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

parents 9a513f23 09277291
......@@ -523,9 +523,9 @@ public class ApiFlowServiceImpl implements ApiFlowService {
runNodeIdSet.add(nodeId);
});
while(!queue.isEmpty()){
subNodeIdList = nodeDependencyMapper.findSubNodeList(queue.poll());
if (subNodeIdList != null && subNodeIdList.size() > 0){
subNodeIdList.forEach(nodeId->{
List<Integer> innerSubNodeIdList = nodeDependencyMapper.findSubNodeList(queue.poll());
if (innerSubNodeIdList != null && innerSubNodeIdList.size() > 0){
innerSubNodeIdList.forEach(nodeId->{
queue.offer(nodeId);
runNodeIdSet.add(nodeId);
});
......
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