mirror of
https://github.com/openSUSE/osc.git
synced 2024-12-25 01:16:14 +01:00
connection: Mute the "Converted retries value" debug message
This commit is contained in:
parent
5c9d66a211
commit
080ffc1655
@ -217,7 +217,7 @@ def http_request(method: str, url: str, headers=None, data=None, file=None):
|
||||
pool = CONNECTION_POOLS.get(apiurl, None)
|
||||
if not pool:
|
||||
pool_kwargs = {}
|
||||
pool_kwargs["retries"] = int(conf.config["http_retries"])
|
||||
pool_kwargs["retries"] = urllib3.Retry(total=int(conf.config["http_retries"]))
|
||||
|
||||
if purl.scheme == "https":
|
||||
ssl_context = oscssl.create_ssl_context()
|
||||
|
Loading…
Reference in New Issue
Block a user