You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### Summary
Fixed the insecure request warning by ensuring ssl verification is
enabled in all of our api calls. In addition, I've added a new config
option called verify_ssl so that this behaviour is configurable by the
user.
### Description
The new config option is set to true by default. I've added this option
to the Parameters class, which we already pass to each api call, instead
of passing ssl_verify as a separate option.
### Test Results
Ran all functional tests against Dremio Cloud:
- Basic tests were flaky at first with one random test failing each
time. But eventually all tests passed. The flaky tests may be related to
#91
- All other func tests passed without an issue
### Changelog
- [x] Added a summary of what this PR accomplishes to CHANGELOG.md
### Related Issue
#142
When running the functional tests, we get the following warning:
InsecureRequestWarning: Unverified HTTPS request is being made to host 'api.dremio.cloud'. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/1.26.x/advanced-usage.html#ssl-warnings
Solution may be using PoolManager with our requests.
The text was updated successfully, but these errors were encountered: