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
That means urllib3.exceptions.MaxRetryError is exposed directly to the caller (even though the use of urllib3 is an implementation detail).
The bypassed code discards the original exception which means that the caller must parse the ApiException.reason string to figure out what happened. In a way, this makes 1 preferable.
The text was updated successfully, but these errors were encountered:
So, pinning urllib3 to a compatible patch release (e.g. urllib3 ~= 1.15.1) is probably advisable.
vboddui
added
Bug_SDK
Bugs related to SDK and surrounding scripts
Packaging
To Track the bug that are release mechanics and packaging specific
labels
Apr 22, 2020
The SDK claims support for
urllib3 >= 1.15
:isilon_sdk_python/setup.py
Line 25 in 1995810
In
urllib3
1.22,MaxRetryError
is raised instead ofSSLError
directly:This means that if
urllib3 >= 1.22
is used, this code is bypassed:isilon_sdk_python/isi_sdk/rest.py
Lines 220 to 222 in 1995810
urllib3.exceptions.MaxRetryError
is exposed directly to the caller (even though the use ofurllib3
is an implementation detail).ApiException.reason
string to figure out what happened. In a way, this makes 1 preferable.The text was updated successfully, but these errors were encountered: