Commit f0934360 by huangfusuper

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

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