I am using Cassandra 4 and cdc-apache-cassandra 2.2.3.
I am seeing different behaviour for two way vs one way ssl when trying to deploy pulsar connector NAR file in the Pulsar cluster.
I have my certificates created using JDK (JAVA Key Tool). If am setting value of ssl.provider as "OpenSSL", I am getting exception while deploying pulsar connector NAR File
But for 1way SSL it's getting deployed successfully without any exception.
For 2way SSL, I am using below configuration:
ssl.provider="OpenSSL"
ssl.hostnameValidation="false"
ssl.keystore.password=
ssl.keystore.path=
ssl.truststore.password=
ssl.truststore.path=
For 1way SSL, I am using below configuration:
ssl.provider="OpenSSL"
ssl.hostnameValidation="false"
ssl.truststore.password=
ssl.truststore.path=
Could you please confirm if this is expected?