laglangyue opened a new pull request, #626: URL: https://github.com/apache/pekko-connectors/pull/626
## movtication we use the kudu images but not from apacheļ¼so update it, and update the version Although I am not an expert in kudu, I am capable of solving this problem. I did some digging and found that the new version of kudu will try TLS connection, so the connection failed ## test test it locally ok ## future I add `encryptionPolicy(EncryptionPolicy.OPTIONAL)` to client temporaryly. It need to some improvment for client. In my opinion, we should provide a way for users to pass us a client that can be customized by the user ```java public enum EncryptionPolicy { // Optional, it uses encrypted connection if the server supports it // but it can connect to insecure servers too. OPTIONAL, // Only connects to remote servers that support encryption, fails // otherwise. It can connect to insecure servers only locally. REQUIRED_REMOTE, // Only connects to any server, including on the loopback interface, // that support encryption, fails otherwise. REQUIRED, } ``` -- 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: notifications-unsubscr...@pekko.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@pekko.apache.org For additional commands, e-mail: notifications-h...@pekko.apache.org