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

lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-paimon.git


The following commit(s) were added to refs/heads/master by this push:
     new 3c10567d7 [minor] remove redundant code for LogSystemITCase (#2686)
3c10567d7 is described below

commit 3c10567d7c5f3c6222797f218d38182fec605f82
Author: JunZhang <[email protected]>
AuthorDate: Fri Jan 12 13:15:30 2024 +0800

    [minor] remove redundant code for LogSystemITCase (#2686)
---
 .../test/java/org/apache/paimon/flink/kafka/LogSystemITCase.java  | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git 
a/paimon-flink/paimon-flink-cdc/src/test/java/org/apache/paimon/flink/kafka/LogSystemITCase.java
 
b/paimon-flink/paimon-flink-cdc/src/test/java/org/apache/paimon/flink/kafka/LogSystemITCase.java
index d4a64ea54..8f2c0a820 100644
--- 
a/paimon-flink/paimon-flink-cdc/src/test/java/org/apache/paimon/flink/kafka/LogSystemITCase.java
+++ 
b/paimon-flink/paimon-flink-cdc/src/test/java/org/apache/paimon/flink/kafka/LogSystemITCase.java
@@ -312,11 +312,9 @@ public class LogSystemITCase extends KafkaTableTestBase {
         env.setParallelism(1);
 
         tEnv.executeSql(
-                String.format(
-                        "CREATE TABLE T (i INT, j INT) WITH ("
-                                + "'log.system'='kafka', "
-                                + "'kafka.topic'='T')",
-                        getBootstrapServers()));
+                "CREATE TABLE T (i INT, j INT) WITH ("
+                        + "'log.system'='kafka', "
+                        + "'kafka.topic'='T')");
 
         checkTopicExists("T", 2, 1);
     }

Reply via email to