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/08 07:53:25 UTC

[incubator-seatunnel] branch dev updated: Fix compile error caused by kudu plugin (#975)

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 c8e8284  Fix compile error caused by kudu plugin (#975)
c8e8284 is described below

commit c8e8284710ddbf35ae47adececbeb724fe8946df
Author: Benedict Jin <as...@apache.org>
AuthorDate: Sat Jan 8 15:53:18 2022 +0800

    Fix compile error caused by kudu plugin (#975)
---
 .../src/main/scala/org/apache/seatunnel/spark/sink/Kudu.scala           | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/seatunnel-connectors/seatunnel-connector-spark-kudu/src/main/scala/org/apache/seatunnel/spark/sink/Kudu.scala b/seatunnel-connectors/seatunnel-connector-spark-kudu/src/main/scala/org/apache/seatunnel/spark/sink/Kudu.scala
index 0f3162e..af7fcec 100644
--- a/seatunnel-connectors/seatunnel-connector-spark-kudu/src/main/scala/org/apache/seatunnel/spark/sink/Kudu.scala
+++ b/seatunnel-connectors/seatunnel-connector-spark-kudu/src/main/scala/org/apache/seatunnel/spark/sink/Kudu.scala
@@ -21,7 +21,7 @@ import scala.collection.JavaConversions._
 
 import org.apache.kudu.spark.kudu._
 import org.apache.seatunnel.common.config.CheckResult
-import org.apache.seatunnel.config.ConfigFactory
+import org.apache.seatunnel.shade.com.typesafe.config.ConfigFactory
 import org.apache.seatunnel.spark.SparkEnvironment
 import org.apache.seatunnel.spark.batch.SparkBatchSink
 import org.apache.spark.sql.{Dataset, Row}