lenboo commented on a change in pull request #8719:
URL: https://github.com/apache/dolphinscheduler/pull/8719#discussion_r838156174
##########
File path:
dolphinscheduler-task-plugin/dolphinscheduler-task-api/src/main/java/org/apache/dolphinscheduler/plugin/task/api/enums/ExecutionStatus.java
##########
@@ -62,7 +62,9 @@
FORCED_SUCCESS(13, "forced success"),
SERIAL_WAIT(14, "serial wait"),
READY_BLOCK(15, "ready block"),
- BLOCK(16, "block");
+ BLOCK(16, "block"),
+ DISPATCH(17, "dispatch"),
Review comment:
Last ',' is unnecessary.
##########
File path:
dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/enums/Event.java
##########
@@ -18,6 +18,9 @@
package org.apache.dolphinscheduler.common.enums;
public enum Event {
- ACK,
- RESULT;
+ DISPATCH,
+ DELAY,
+ RUNNING,
+ RESULT,
Review comment:
The last ',' is unnecessary.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]