ruanwenjun commented on a change in pull request #8503:
URL: https://github.com/apache/dolphinscheduler/pull/8503#discussion_r813708463
##########
File path:
dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/enums/TaskType.java
##########
@@ -58,7 +59,8 @@
SEATUNNEL(13, "SEATUNNEL"),
SWITCH(14, "SWITCH"),
PIGEON(15, "PIGEON"),
- DATA_QUALITY(16, "DATA_QUALITY");
+ DATA_QUALITY(16, "DATA_QUALITY"),
+ EMR(17, "EMR");
Review comment:
A small tips, add ',' at the enum end can help to reduce changes when
someone a new enum in the future.
```suggestion
DATA_QUALITY(16, "DATA_QUALITY"),
EMR(17, "EMR"),
;
```
--
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]