Browse Source

modify log msg (#16062)

Co-authored-by: xiangzihao <460888207@qq.com>
upstream-dev
sleo 5 months ago committed by GitHub
parent
commit
581a7edad8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteRunnable.java

2
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteRunnable.java

@ -1358,7 +1358,7 @@ public class WorkflowExecuteRunnable implements IWorkflowExecuteRunnable {
} }
} }
log.info("The dependTasks of task all success, currentTaskCode: {}, dependTaskCodes: {}", log.info("The dependTasks of task all success, currentTaskCode: {}, dependTaskCodes: {}",
taskCode, Arrays.toString(completeTaskSet.toArray())); taskCode, Arrays.toString(indirectDepCodeList.toArray()));
return DependResult.SUCCESS; return DependResult.SUCCESS;
} }

Loading…
Cancel
Save