Skip to content

Commit

Permalink
fetch: Increase timeout to 10 seconds
Browse files Browse the repository at this point in the history
  • Loading branch information
jbruechert committed Nov 11, 2024
1 parent 6733a2e commit ad9598c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fetch.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit ad9598c

Please sign in to comment.