You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@seatunnel.apache.org by ki...@apache.org on 2022/01/24 09:32:01 UTC

[incubator-seatunnel] branch dev updated: variable name modification (#1150)

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

kirs 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 4e141fa  variable name modification (#1150)
4e141fa is described below

commit 4e141fa506a17e661fab7845cbfcb993cf167208
Author: liujinhui <96...@qq.com>
AuthorDate: Mon Jan 24 17:31:58 2022 +0800

    variable name modification (#1150)
    
    Co-authored-by: liujh <li...@t3go.cn>
---
 .../java/org/apache/seatunnel/example/spark/LocalSparkExample.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/seatunnel-examples/seatunnel-spark-examples/src/main/java/org/apache/seatunnel/example/spark/LocalSparkExample.java b/seatunnel-examples/seatunnel-spark-examples/src/main/java/org/apache/seatunnel/example/spark/LocalSparkExample.java
index ec03851..b0a0030 100644
--- a/seatunnel-examples/seatunnel-spark-examples/src/main/java/org/apache/seatunnel/example/spark/LocalSparkExample.java
+++ b/seatunnel-examples/seatunnel-spark-examples/src/main/java/org/apache/seatunnel/example/spark/LocalSparkExample.java
@@ -28,8 +28,8 @@ public class LocalSparkExample {
 
     public static void main(String[] args) {
         String configFile = getTestConfigFile("spark.batch.conf.template");
-        CommandLineArgs flinkArgs = new CommandLineArgs(configFile, false);
-        Seatunnel.run(flinkArgs, SPARK);
+        CommandLineArgs sparkArgs = new CommandLineArgs(configFile, false);
+        Seatunnel.run(sparkArgs, SPARK);
     }
 
     public static String getTestConfigFile(String configFile) {