This is an automated email from the ASF dual-hosted git repository.
pinal pushed a commit to branch branch-2.0
in repository https://gitbox.apache.org/repos/asf/atlas.git
The following commit(s) were added to refs/heads/branch-2.0 by this push:
new cd65abe8d ATLAS-4569: Kafka importer should use only kafka-clients
from Kafka libs and slf4j-api
cd65abe8d is described below
commit cd65abe8d5588ccf09c9f6f7fc4446c9cb487b31
Author: Andras Katona <[email protected]>
AuthorDate: Thu Apr 21 18:27:53 2022 +0200
ATLAS-4569: Kafka importer should use only kafka-clients from Kafka libs
and slf4j-api
Signed-off-by: Pinal Shah <[email protected]>
(cherry picked from commit 09a8282fa2578ddb71c300ec5853a00fceb1af0c)
---
addons/kafka-bridge/src/bin/import-kafka.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/addons/kafka-bridge/src/bin/import-kafka.sh
b/addons/kafka-bridge/src/bin/import-kafka.sh
index fbc16f0d0..ada3b4ae2 100644
--- a/addons/kafka-bridge/src/bin/import-kafka.sh
+++ b/addons/kafka-bridge/src/bin/import-kafka.sh
@@ -99,7 +99,7 @@ fi
KAFKA_CP="${KAFKA_CONF}"
-for i in "${KAFKA_HOME}/libs/"*.jar; do
+for i in "${KAFKA_HOME}/libs/kafka-clients"*.jar
"${KAFKA_HOME}/libs/slf4j-api"*.jar; do
KAFKA_CP="${KAFKA_CP}:$i"
done