You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@seatunnel.apache.org by ga...@apache.org on 2022/01/08 06:16:28 UTC

[incubator-seatunnel] branch dev updated: Fix the suffix of hocon config file (#972)

This is an automated email from the ASF dual-hosted git repository.

gaoyingju 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 1d8b5a0  Fix the suffix of hocon config file (#972)
1d8b5a0 is described below

commit 1d8b5a0600d4c9ee4994ed706d0ee66e714ebef3
Author: Benedict Jin <as...@apache.org>
AuthorDate: Sat Jan 8 14:16:23 2022 +0800

    Fix the suffix of hocon config file (#972)
---
 .../src/main/java/org/apache/seatunnel/test/flink/LocalTest.java        | 2 +-
 .../resources/examples/{fake_to_console.config => fake_to_console.conf} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/seatunnel-examples/seatunnel-flink-examples/src/main/java/org/apache/seatunnel/test/flink/LocalTest.java b/seatunnel-examples/seatunnel-flink-examples/src/main/java/org/apache/seatunnel/test/flink/LocalTest.java
index 7dd75d5..eab9cfc 100644
--- a/seatunnel-examples/seatunnel-flink-examples/src/main/java/org/apache/seatunnel/test/flink/LocalTest.java
+++ b/seatunnel-examples/seatunnel-flink-examples/src/main/java/org/apache/seatunnel/test/flink/LocalTest.java
@@ -27,7 +27,7 @@ public class LocalTest {
     public static final String TEST_RESOURCE_DIR = "/seatunnel-examples/seatunnel-flink-examples/src/main/resources/examples/";
 
     public static void main(String[] args) {
-        String configFile = getTestConfigFile("fake_to_console.config");
+        String configFile = getTestConfigFile("fake_to_console.conf");
         CommandLineArgs flinkArgs = new CommandLineArgs(configFile, false);
         Seatunnel.run(flinkArgs, FLINK, args);
     }
diff --git a/seatunnel-examples/seatunnel-flink-examples/src/main/resources/examples/fake_to_console.config b/seatunnel-examples/seatunnel-flink-examples/src/main/resources/examples/fake_to_console.conf
similarity index 100%
rename from seatunnel-examples/seatunnel-flink-examples/src/main/resources/examples/fake_to_console.config
rename to seatunnel-examples/seatunnel-flink-examples/src/main/resources/examples/fake_to_console.conf