This is an automated email from the ASF dual-hosted git repository.

chufenggao pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git


The following commit(s) were added to refs/heads/dev by this push:
     new 21ca8ddf03 [fix-13734] Fix taskExecuteType field of task definition 
was not set correctly (#13735)
21ca8ddf03 is described below

commit 21ca8ddf03299807867c90a5e7631b11d8f2d2cd
Author: sandiegoe <[email protected]>
AuthorDate: Mon Mar 27 10:50:01 2023 +0800

    [fix-13734] Fix taskExecuteType field of task definition was not set 
correctly (#13735)
    
    Co-authored-by: shenzhaoquan <[email protected]>
---
 .../java/org/apache/dolphinscheduler/dao/entity/TaskDefinitionLog.java   | 1 +
 1 file changed, 1 insertion(+)

diff --git 
a/dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/entity/TaskDefinitionLog.java
 
b/dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/entity/TaskDefinitionLog.java
index a42f593a9f..0475b8ba3b 100644
--- 
a/dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/entity/TaskDefinitionLog.java
+++ 
b/dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/entity/TaskDefinitionLog.java
@@ -58,6 +58,7 @@ public class TaskDefinitionLog extends TaskDefinition {
         this.setTaskParamList(taskDefinition.getTaskParamList());
         this.setTaskParamMap(taskDefinition.getTaskParamMap());
         this.setTaskPriority(taskDefinition.getTaskPriority());
+        this.setTaskExecuteType(taskDefinition.getTaskExecuteType());
         
this.setTimeoutNotifyStrategy(taskDefinition.getTimeoutNotifyStrategy());
         this.setTaskType(taskDefinition.getTaskType());
         this.setTimeout(taskDefinition.getTimeout());

Reply via email to