-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
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
Add option to disable SSL verification for S3Store #82
Add option to disable SSL verification for S3Store #82
Conversation
Codecov ReportPatch and project coverage have no change.
Additional details and impacted files@@ Coverage Diff @@
## main #82 +/- ##
=====================================
Coverage 0.00% 0.00%
=====================================
Files 32 32
Lines 1986 1988 +2
=====================================
- Misses 1986 1988 +2
☔ View full report in Codecov by Sentry. |
@@ -7,7 +7,7 @@ | |||
|
|||
storage = pytest.importorskip("google.cloud.storage") | |||
|
|||
S3_URL = "s3://minio:miniostorage@127.0.0.1:9000/bucketname?create_if_missing=true&is_secure=false" | |||
S3_URL = "s3://minio:miniostorage@127.0.0.1:9000/bucketname?create_if_missing=true&is_secure=false&verify=False" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is the F uppecase here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No particular reason. It makes no difference, but I've lowercawed it for consistency.
It's not always possible (or, at least, not convenient) to deal with SSL verification when the certificates are self-signed. This PR adds an option to disable SSL verification.
Depends on #81.
Checklist
docs/changes.rst
entry