You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@seatunnel.apache.org by GitBox <gi...@apache.org> on 2022/07/06 09:03:26 UTC

[GitHub] [incubator-seatunnel] chocolateBlack commented on issue #2122: Configuration key 'auth' is set to null but expected STRING

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: commits-unsubscribe@seatunnel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org