This is an automated email from the ASF dual-hosted git repository. leonbao pushed a commit to branch 1.3.0-release in repository https://gitbox.apache.org/repos/asf/incubator-dolphinscheduler.git
commit b172f31f630afc527f3cc8f3fbc42ec6263f8ba8 Author: t1mon <[email protected]> AuthorDate: Fri Jun 5 18:42:10 2020 +0800 Fix tasks not execute in sub-process when rerun scheduled process. #2903 (#2908) --- .../org/apache/dolphinscheduler/service/process/ProcessService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessService.java b/dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessService.java index aa7d83f..617826c 100644 --- a/dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessService.java +++ b/dolphinscheduler-service/src/main/java/org/apache/dolphinscheduler/service/process/ProcessService.java @@ -921,7 +921,7 @@ public class ProcessService { CommandType fatherType = parentProcessInstance.getCommandType(); CommandType commandType = fatherType; - if(childInstance == null || commandType == CommandType.REPEAT_RUNNING){ + if(childInstance == null){ String fatherHistoryCommand = parentProcessInstance.getHistoryCmd(); // sub process must begin with schedule/complement data // if father begin with scheduler/complement data
