提交 19bde513 编写于 作者: 一子三木's avatar 一子三木

fix word spelling

上级 b34f9745
...@@ -224,14 +224,14 @@ public class MasterExecThread implements Runnable { ...@@ -224,14 +224,14 @@ public class MasterExecThread implements Runnable {
// execute process ,waiting for end // execute process ,waiting for end
runProcess(); runProcess();
// process instace failure no more complements // process instace failure ,no more complements
if(!processInstance.getState().typeIsSuccess()){ if(!processInstance.getState().typeIsSuccess()){
logger.info("process {} state {}, complement not completely!", logger.info("process {} state {}, complement not completely!",
processInstance.getId(), processInstance.getState()); processInstance.getId(), processInstance.getState());
break; break;
} }
// current process instance sucess ,next execute // current process instance success ,next execute
scheduleDate = DateUtils.getSomeDay(scheduleDate, 1); scheduleDate = DateUtils.getSomeDay(scheduleDate, 1);
if(scheduleDate.after(endDate)){ if(scheduleDate.after(endDate)){
// all success // all success
...@@ -541,7 +541,7 @@ public class MasterExecThread implements Runnable { ...@@ -541,7 +541,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;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册