From ad9598cac32ac3d623262eae69a40f7a7f98d4ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonah=20Br=C3=BCchert?= Date: Mon, 11 Nov 2024 01:21:12 +0100 Subject: [PATCH] fetch: Increase timeout to 10 seconds --- src/fetch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fetch.py b/src/fetch.py index 01e29bb4..4c41bb3a 100755 --- a/src/fetch.py +++ b/src/fetch.py @@ -102,7 +102,7 @@ def fetch_source(self, dest_path: Path, source: Source) -> bool: case HttpSource(): request_options: dict[str, Any] = { "verify": not source.options.ignore_tls_errors, - "timeout": 5 + "timeout": 10 } headers = source.options.headers.copy()