Commit f0934360 by huangfusuper

关闭实例错误码判断失败BUG

parent c8e6f6a6
...@@ -498,9 +498,8 @@ public class ApiFlowServiceImpl implements ApiFlowService { ...@@ -498,9 +498,8 @@ public class ApiFlowServiceImpl implements ApiFlowService {
waitingTask.setOperator(userName); waitingTask.setOperator(userName);
//查询当前节点的依赖节点 //查询当前节点的依赖节点
List<Integer> dependNodeIdList = nodeDependencyMapper.findDependIdByNodeId(node.getNodeId()); if (dependNodeList != null && dependNodeList.size() > 0){
if (dependNodeIdList != null && dependNodeIdList.size() > 0){ waitingTask.setNodeDepend(Joiner.on(",").join(dependNodeList));
waitingTask.setNodeDepend(Joiner.on(",").join(dependNodeIdList));
} }
List<WaitingTask> waitingTaskList = new ArrayList<>(); List<WaitingTask> waitingTaskList = new ArrayList<>();
......
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