This is an automated email from the ASF dual-hosted git repository.
kerwin pushed a commit to branch 3.1.7-prepare
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git
The following commit(s) were added to refs/heads/3.1.7-prepare by this push:
new 3281c97fe1 [fix-#13940] add status of ``` stop``` in class of
TaskExecutionStatus (#14016)
3281c97fe1 is described below
commit 3281c97fe1e7d4c776a263b741623c31882c634f
Author: fuchanghai <[email protected]>
AuthorDate: Thu May 18 13:31:02 2023 +0800
[fix-#13940] add status of ``` stop``` in class of TaskExecutionStatus
(#14016)
---
.../dolphinscheduler/plugin/task/api/enums/TaskExecutionStatus.java | 1 +
1 file changed, 1 insertion(+)
diff --git
a/dolphinscheduler-task-plugin/dolphinscheduler-task-api/src/main/java/org/apache/dolphinscheduler/plugin/task/api/enums/TaskExecutionStatus.java
b/dolphinscheduler-task-plugin/dolphinscheduler-task-api/src/main/java/org/apache/dolphinscheduler/plugin/task/api/enums/TaskExecutionStatus.java
index d4e9d6d01b..ac5f401c50 100644
---
a/dolphinscheduler-task-plugin/dolphinscheduler-task-api/src/main/java/org/apache/dolphinscheduler/plugin/task/api/enums/TaskExecutionStatus.java
+++
b/dolphinscheduler-task-plugin/dolphinscheduler-task-api/src/main/java/org/apache/dolphinscheduler/plugin/task/api/enums/TaskExecutionStatus.java
@@ -27,6 +27,7 @@ public enum TaskExecutionStatus {
SUBMITTED_SUCCESS(0, "submit success"),
RUNNING_EXECUTION(1, "running"),
PAUSE(3, "pause"),
+ STOP(5, "stop"),
FAILURE(6, "failure"),
SUCCESS(7, "success"),
NEED_FAULT_TOLERANCE(8, "need fault tolerance"),