Browse Source

Fix dependency failure (#5239)

Co-authored-by: JinyLeeChina <297062848@qq.com>
pull/3/MERGE
JinyLeeChina 4 years ago committed by GitHub
parent
commit
8c88bfa222
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/model/TaskNode.java

2
dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/model/TaskNode.java

@ -211,9 +211,11 @@ public class TaskNode {
} }
public void setDepList(List<String> depList) { public void setDepList(List<String> depList) {
if (depList != null) {
this.depList = depList; this.depList = depList;
this.preTasks = JSONUtils.toJsonString(depList); this.preTasks = JSONUtils.toJsonString(depList);
} }
}
public String getLoc() { public String getLoc() {
return loc; return loc;

Loading…
Cancel
Save