DingPengfei commented on a change in pull request #1524:
URL:
https://github.com/apache/incubator-seatunnel/pull/1524#discussion_r830590008
##########
File path:
seatunnel-connectors/seatunnel-connectors-spark/seatunnel-connector-spark-redis/src/main/scala/org/apache/seatunnel/spark/sink/Redis.scala
##########
@@ -38,7 +38,7 @@ class Redis extends SparkBatchSink with Logging {
val redisConfigs = new RedisConfig(RedisEndpoint(
host = config.getString(HOST),
port = config.getInt(PORT),
- auth = config.getString(AUTH),
+ auth = if (config.getIsNull(AUTH)) null else config.getString(AUTH),
Review comment:
`DEFAULT_AUTH` is null, `config.getString(DEFAULT_AUTH)` can get an error
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]