Browse Source

fix Misspelled words (#1841)

* modify UdfFuncServiceTest UT

* fix get tenantCode my NPE

* add  ResourcesServiceTest

* add error log

* add BaseServiceTest BaseServiceTest UT

* update

* fix word spelling

* Revert "fix word spelling"

This reverts commit 19bde51350.

* fix Misspelled words
pull/2/head
samz406 5 years ago committed by dailidong
parent
commit
aa91572def
  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; break;
} }
// current process instance sucess ,next execute // current process instance success ,next execute
if(null == iterator){ if(null == iterator){
// loop by day // loop by day
scheduleDate = DateUtils.getSomeDay(scheduleDate, 1); scheduleDate = DateUtils.getSomeDay(scheduleDate, 1);
@ -575,7 +575,7 @@ public class MasterExecThread implements Runnable {
private DependResult isTaskDepsComplete(String taskName) { private DependResult isTaskDepsComplete(String taskName) {
Collection<String> startNodes = dag.getBeginNode(); Collection<String> startNodes = dag.getBeginNode();
// ff the vertex returns true directly // if the vertex returns true directly
if(startNodes.contains(taskName)){ if(startNodes.contains(taskName)){
return DependResult.SUCCESS; return DependResult.SUCCESS;
} }

Loading…
Cancel
Save