confluent-avro-py icon indicating copy to clipboard operation
confluent-avro-py copied to clipboard

Possibility to disable SSL certificat verification

Open antopoid opened this issue 2 years ago • 0 comments

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, )

antopoid avatar Jun 08 '22 14:06 antopoid