Browse Source

fix Misspelled words

pull/2/head
lilin 5 years ago
parent
commit
9ebe177e11
  1. 4
      dolphinscheduler-server/src/main/java/org/apache/dolphinscheduler/server/master/runner/MasterExecThread.java

4
dolphinscheduler-server/src/main/java/org/apache/dolphinscheduler/server/master/runner/MasterExecThread.java

@ -254,7 +254,7 @@ public class MasterExecThread implements Runnable {
break;
}
// current process instance sucess ,next execute
// current process instance success ,next execute
if(null == iterator){
// loop by day
scheduleDate = DateUtils.getSomeDay(scheduleDate, 1);
@ -575,7 +575,7 @@ public class MasterExecThread implements Runnable {
private DependResult isTaskDepsComplete(String taskName) {
Collection<String> startNodes = dag.getBeginNode();
// ff the vertex returns true directly
// if the vertex returns true directly
if(startNodes.contains(taskName)){
return DependResult.SUCCESS;
}

Loading…
Cancel
Save