This is an automated email from the ASF dual-hosted git repository.
lidongdai pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-dolphinscheduler.git
The following commit(s) were added to refs/heads/dev by this push:
new 0712ccc #1871 correct spelling (#1872)
0712ccc is described below
commit 0712ccc34284aa7a7053f8756b954eef50cd9617
Author: Tboy <[email protected]>
AuthorDate: Sun Jan 26 13:30:59 2020 +0800
#1871 correct spelling (#1872)
* move version to parent pom
* move version properties to parent pom for easy management
* remove freemarker dependency
* delete CombinedApplicationServer
* #1871 correct spelling
---
.../server/master/runner/MasterExecThread.java | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git
a/dolphinscheduler-server/src/main/java/org/apache/dolphinscheduler/server/master/runner/MasterExecThread.java
b/dolphinscheduler-server/src/main/java/org/apache/dolphinscheduler/server/master/runner/MasterExecThread.java
index 84b1114..2d0e99a 100644
---
a/dolphinscheduler-server/src/main/java/org/apache/dolphinscheduler/server/master/runner/MasterExecThread.java
+++
b/dolphinscheduler-server/src/main/java/org/apache/dolphinscheduler/server/master/runner/MasterExecThread.java
@@ -187,7 +187,7 @@ public class MasterExecThread implements Runnable {
/**
* execute process
- * @throws Exception excpetion
+ * @throws Exception exception
*/
private void executeProcess() throws Exception {
prepareProcess();
@@ -197,7 +197,7 @@ public class MasterExecThread implements Runnable {
/**
* execute complement process
- * @throws Exception excpetion
+ * @throws Exception exception
*/
private void executeComplementProcess() throws Exception {
@@ -247,7 +247,7 @@ public class MasterExecThread implements Runnable {
// execute process ,waiting for end
runProcess();
- // process instace failure ,no more complements
+ // process instance failure ,no more complements
if(!processInstance.getState().typeIsSuccess()){
logger.info("process {} state {}, complement not completely!",
processInstance.getId(), processInstance.getState());
@@ -304,7 +304,7 @@ public class MasterExecThread implements Runnable {
/**
* prepare process parameter
- * @throws Exception excpetion
+ * @throws Exception exception
*/
private void prepareProcess() throws Exception {
// init task queue
@@ -332,7 +332,7 @@ public class MasterExecThread implements Runnable {
/**
* generate process dag
- * @throws Exception excpetion
+ * @throws Exception exception
*/
private void buildFlowDag() throws Exception {
recoverNodeIdList =
getStartTaskInstanceList(processInstance.getCommandParam());
@@ -609,7 +609,7 @@ public class MasterExecThread implements Runnable {
/**
* query task instance by complete state
* @param state state
- * @return task isntance list
+ * @return task instance list
*/
private List<TaskInstance> getCompleteTaskByState(ExecutionStatus state){
List<TaskInstance> resultList = new ArrayList<>();
@@ -804,7 +804,7 @@ public class MasterExecThread implements Runnable {
}
/**
- * add task to standy list
+ * add task to standby list
* @param taskInstance task instance
*/
private void addTaskToStandByList(TaskInstance taskInstance){