Skip to content
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

Update docs for cert_check flag #1385

Merged
merged 2 commits into from
Dec 30, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/API.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ __Parameters__
| `region` | _str_ | (Optional) Region name of buckets in S3 service. |
| `http_client` | _urllib3.poolmanager.PoolManager_ | (Optional) Customized HTTP client. |
| `credentials` | _minio.credentials.Provider_ | (Optional) Credentials provider of your account in S3 service. |
| `cert_check` | _bool_ | (Optional) Flag to check on server certificate for HTTPS connection. |


**NOTE on concurrent usage:** `Minio` object is thread safe when using the Python `threading` library. Specifically, it is **NOT** safe to share it between multiple processes, for example when using `multiprocessing.Pool`. The solution is simply to create a new `Minio` object in each process, and not share it between processes.
Expand Down