kevinYuan2017 opened a new pull request, #14131: URL: https://github.com/apache/dolphinscheduler/pull/14131
…es/14114) <!--Thanks very much for contributing to Apache DolphinScheduler. Please review https://dolphinscheduler.apache.org/en-us/community/development/pull-request.html before opening a pull request.--> ## Purpose of the pull request <!--(For example: This pull request adds checkstyle plugin).--> This pull request fixed issue [#14114](https://github.com/apache/dolphinscheduler/issues/14114) ## Brief change log Added an annotation to `org.apache.dolphinscheduler.plugin.task.seatunnel.SeatunnelParameters.class`. class annotation before: `@JsonSubTypes({ @JsonSubTypes.Type(value = SeatunnelFlinkParameters.class, name = "FLINK"), @JsonSubTypes.Type(value = SeatunnelSparkParameters.class, name = "SPARK") })` class annotation after: `@JsonSubTypes({ @JsonSubTypes.Type(value = SeatunnelFlinkParameters.class, name = "FLINK"), @JsonSubTypes.Type(value = SeatunnelSparkParameters.class, name = "SPARK"), @JsonSubTypes.Type(value = SeatunnelEngineParameters.class, name = "SEATUNNEL_ENGINE") })` ## Verify this pull request After the annotation change, I repackaged the source code and test the seatunnel engine parameter, it works well. -- 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]
