fix(clone_packages): 10 seconds default timeout was too short

This commit is contained in:
Laurent Peuch 2024-05-05 21:53:27 +02:00
parent 145cd80f61
commit d8c6d6f5ce

View file

@ -44,7 +44,7 @@ def generate_mirror_list():
def request_handling_rate_limit(method, *args, **kwargs):
if "timeout" not in kwargs:
kwargs["timeout"] = 10
kwargs["timeout"] = 60
while True:
response = method(*args, **kwargs)