This is an automated email from the ASF dual-hosted git repository.
fanjia pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-seatunnel.git
The following commit(s) were added to refs/heads/dev by this push:
new aaecca8f [Bug][seatunnel-core-flink] Updated FlinkRunMode enum to get
the proper help message for run modes. (#2008)
aaecca8f is described below
commit aaecca8f72e6a07c37f3ff884528fb5a2cb1c9a2
Author: mans2singh <[email protected]>
AuthorDate: Sun Jun 12 22:11:02 2022 -0400
[Bug][seatunnel-core-flink] Updated FlinkRunMode enum to get the proper
help message for run modes. (#2008)
---
.../java/org/apache/seatunnel/core/flink/config/FlinkRunMode.java | 4 ++++
1 file changed, 4 insertions(+)
diff --git
a/seatunnel-core/seatunnel-core-flink/src/main/java/org/apache/seatunnel/core/flink/config/FlinkRunMode.java
b/seatunnel-core/seatunnel-core-flink/src/main/java/org/apache/seatunnel/core/flink/config/FlinkRunMode.java
index 1e8f2246..4c3435de 100644
---
a/seatunnel-core/seatunnel-core-flink/src/main/java/org/apache/seatunnel/core/flink/config/FlinkRunMode.java
+++
b/seatunnel-core/seatunnel-core-flink/src/main/java/org/apache/seatunnel/core/flink/config/FlinkRunMode.java
@@ -35,4 +35,8 @@ public enum FlinkRunMode {
public String getMode() {
return mode;
}
+
+ public String toString() {
+ return mode;
+ }
}