Я использую сливную кафку python 'https://github.com/confluentinc/confluent-kafka-python' для написания приложения. Реестр kafka и схемы защищен и использует конечные точки https.
При запуске приложения я получаю следующую ошибку
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')])")))
Вопрос 1:
For connecting to schema registry, where to specify the ceritificate value ?
Вопрос 2:
For testing, i want to disable SSL verification in python, What is the option to do that ?
Спасибо заранее.