Hi, Just wanted to try this question again. Is th...
# ask-community
s
Hi, Just wanted to try this question again. Is there any way to get Dagster (OSS Version) to accept a self-signed SSL certificate? The error message we are getting is: Request to Airbyte API failed: HTTPSConnectionPool(host=‘x.x.x.x’, port=x): Max retries exceeded with url: /api/v1/connections/get (Caused by SSLError(SSLCertVerificationError(1, ‘[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate (_ssl.c:1131)’))) Does this mean that we have no choice but to use a valid SSL Certificate Authority, or is there some trick we can use to force Dagster to accept the self-signed cert? Thank you!!
Just wanted to gently bump this thread …
s
cc @alex
a
i assume you are using
dagster-airbyte
? Options appear to be: • set the
use_https
config to false https://github.com/dagster-io/dagster/blame/master/python_modules/libraries/dagster-airbyte/dagster_airbyte/resources.py#L201-L205 • set the
REQUESTS_CA_BUNDLE
env var https://requests.readthedocs.io/en/latest/user/advanced/#ssl-cert-verification
171 Views