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
Allow users to use custom http client in the constructor (#589)
Minio constructor has been modified to take a custom http client
from the user.
This prevents the constructor from having too many options.
The next version has been bumped to 3.0.0, since this change
breaks backward compatibility.
Fixes#588
|`secret_key`|_string_| Secret key for the object storage endpoint. (Optional if you need anonymous access). |
62
62
|`secure`|_bool_| Set this value to `True` to enable secure (HTTPS) access. (Optional defaults to `True`). |
63
63
|`region`|_string_| Set this value to override automatic bucket location discovery. (Optional defaults to `None`). |
64
-
|`timeout`|_float_| Set this value to control how long requests are allowed to run before being aborted. (Optional defaults to `None`) |
64
+
|`http_client`|_urllib3.poolmanager.PoolManager_| Set this value to use custom http client instead of using default http client. (Optional defaults to `None`) |
0 commit comments