From 25090a81292a464aae1da4da5eb5a39ac72c9520 Mon Sep 17 00:00:00 2001 From: decentral1se Date: Sat, 3 Apr 2021 20:42:21 +0200 Subject: [PATCH] Drop timeout value --- bin/app-json.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/app-json.py b/bin/app-json.py index 4995e6a8..96a11281 100755 --- a/bin/app-json.py +++ b/bin/app-json.py @@ -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)