Arjun
07/18/2022, 1:56 PMcheck_connection
function using verify=False
(if I use requests
). But, what about the stream class (which extends HttpStream
)? How can I do the same there as there is no explicit requests
call?
Apologies if it is a basic question but I couldn't find an answer online. Thank you.Alexandre Girard (Airbyte)
07/18/2022, 2:25 PMrequest_kwargs
to return {"verify": False}
. the param should get propagate through https://github.com/airbytehq/airbyte/blob/master/airbyte-cdk/python/airbyte_cdk/sources/streams/http/http.py#L292Arjun
07/18/2022, 3:15 PM