Can ssl be made to ignore certificates in HTTP Client?
Hitting an error with an http origin:
× Closecom.streamsets.pipeline.api.StageException: HTTP_32 - Error executing request: javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
With curl I get a similar error unless I use the -k (insecure) option. Is there a way to do the same with sdc?
In python it can be done with these options: session = requests.Session() session.trust_env = False response = session.get(url, headers=headers, verify=False)