Drop timeout value

This commit is contained in:
decentral1se 2021-04-03 20:42:21 +02:00
parent be5383b164
commit 25090a8129
No known key found for this signature in database
GPG Key ID: 92DAD76BD9567B8A
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ def clone_all_apps():
log.info(f"Retrieving {url}")
try:
response = get(url, timeout=30)
response = get(url, timeout=10)
except Exception as exception:
log.error(f"Failed to retrieve {url}, saw {str(exception)}")
exit(1)