confluent-avro-py
confluent-avro-py copied to clipboard
Possibility to disable SSL certificat verification
Requests can also ignore verifying the SSL certificate if you set verify to False: exemple: requests.get('https://exemple.com', verify=False)
to add it as:
registry_client = SchemaRegistry( "https://schemaregistry", HTTPBasicAuth("", ""), headers={"Content-Type": "application/vnd.schemaregistry.v1+json"}, verify=False, )