chocolateBlack commented on issue #2122:
URL: 
https://github.com/apache/incubator-seatunnel/issues/2122#issuecomment-1175971757

   > `'auth' is set to null but expected STRING"` so you should put your 
password in this field. check 
https://seatunnel.apache.org/docs/2.1.2/connector/sink/Redis
   
   there is no password config to the redis。 I found It was a bug  and fixed in 
new version。
   org.apache.seatunnel.spark.sink.Redis line 41:
   from
   `auth =  config.getString(AUTH),`
   to 
   `auth = if (config.getIsNull(AUTH)) null else config.getString(AUTH),`
   
   


-- 
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]

Reply via email to