LiuShuangBJ commented on code in PR #14750:
URL: 
https://github.com/apache/dolphinscheduler/pull/14750#discussion_r1356050016


##########
dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/utils/DagHelper.java:
##########
@@ -340,14 +340,18 @@ public static Set<Long> parsePostNodes(Long preNodeCode,
      * if all of the task dependence are skipped, skip it too.
      */
     private static boolean isTaskNodeNeedSkip(TaskNode taskNode,
-                                              Map<Long, TaskNode> 
skipTaskNodeList) {
+                                              Map<Long, TaskNode> 
skipTaskNodeList,
+                                              Map<Long, TaskInstance> 
completeTaskList) {
         if (CollectionUtils.isEmpty(taskNode.getDepList())) {
             return false;
         }
         for (Long depNode : taskNode.getDepList()) {
             if (!skipTaskNodeList.containsKey(depNode)) {
                 return false;
             }
+            if (completeTaskList.containsKey(depNode)) {

Review Comment:
   yes ,and this problem had been closed by #14537, i will close this pr



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to