We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently when using PyAirbyte and trying to connect to the Airbyte API hosted OSS and using self-signed certificates, the verification fails.
from airbyte.cloud.workspaces import CloudWorkspace workspace = CloudWorkspace( workspace_id = "<uuid of workspace>", api_root = "https://airbyte.company.com/api/public/v1" )
Solution: let pass path to CA cert or pass in custom requests.Session object (like in airbyte-api-python-sdk)
The text was updated successfully, but these errors were encountered:
Hello, @mateocolina. Thanks for logging this. Is this something you would be interested in helping contribute? We'd be happy to support a PR if so.
Most of the relevant code is in the airbyte._util.api_util module, which is a wrapper around code in the airbyte-ai-python-sdk package.
airbyte._util.api_util
airbyte-ai-python-sdk
Sorry, something went wrong.
Hi @aaronsteers happy to contribute. Thanks for pointing out the component to be updated. I'll try working on it next week. Cheers
No branches or pull requests
Currently when using PyAirbyte and trying to connect to the Airbyte API hosted OSS and using self-signed certificates, the verification fails.
Solution: let pass path to CA cert or pass in custom requests.Session object (like in airbyte-api-python-sdk)
The text was updated successfully, but these errors were encountered: