I am using confluent kafka python 'https://github.com/confluentinc/confluent-kafka-python' for writing application. Both kafka and schema registry is secured and uses https endpoints.
While running the application, i am getting following error
Result: Failure Exception: SSLError: HTTPSConnectionPool(host='hostname', port=443):
Max retries exceeded with url: //subjects/schema-value/versions (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')])")))
Question 1:
For connecting to schema registry, where to specify the ceritificate value ?
Question 2:
For testing, i want to disable SSL verification in python, What is the option to do that ?
Thanks in advance.