Skip to content

Commit

Permalink
docs: Fix typo in certificate_handling usage examples
Browse files Browse the repository at this point in the history
  • Loading branch information
Eta0 committed Oct 31, 2023
1 parent 5c69abe commit 6cf9600
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Customization is achieved by passing an instance of `stream_io.CAInfo`
to `open_stream` or the `CURLStreamFile` constructor
- Example usages:
- `open_stream("https://localhost/model.tensors`, certificate_handling=CAInfo(cacert="./localhost.pem")`
- `open_stream("https://127.0.0.1/model.tensors`, certificate_handling=CAInfo(allow_untrusted=True)`
- `open_stream("https://localhost/model.tensors", certificate_handling=CAInfo(cacert="./localhost.pem")`
- `open_stream("https://127.0.0.1/model.tensors", certificate_handling=CAInfo(allow_untrusted=True)`
- Pass `certificate_handling=None` (the default) to use default certificate
verification as compiled into cURL

Expand Down

0 comments on commit 6cf9600

Please sign in to comment.