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
As of urllib 2.0.0 (released 2023-04-26), the method_whitelist argument for Retry (which has been deprecated for a while) was removed in favor of allowed_methods.
However, the removed argument is still referenced here:
connect=10, # 10 retries for connection-level errors
status_forcelist=(), # Retry only on connection errors
method_whitelist=False) # Retry on all methods, even POST and PUT
Therefore, pinning the version of urllib3 is required. It would be great if this long-deprecated, now removed argument was replaced with the proper one.
The text was updated successfully, but these errors were encountered:
As of urllib 2.0.0 (released 2023-04-26), the
method_whitelist
argument forRetry
(which has been deprecated for a while) was removed in favor ofallowed_methods
.However, the removed argument is still referenced here:
agraph-python/src/franz/miniclient/backends/requests.py
Lines 36 to 39 in 25b8963
Therefore, pinning the version of urllib3 is required. It would be great if this long-deprecated, now removed argument was replaced with the proper one.
The text was updated successfully, but these errors were encountered: