diff options
| -rw-r--r-- | package_scanner.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package_scanner.nim b/package_scanner.nim index e2d22ac..e775e29 100644 --- a/package_scanner.nim +++ b/package_scanner.nim @@ -86,7 +86,7 @@ proc check(): int = name = pdata["name"].str url = pdata["web"].str try: - discard getContent(url, timeout=400) + discard getContent(url, timeout=1000) except HttpRequestError, TimeoutError: echo "E: ", name, ": unable to fetch repository ", url, " ", getCurrentExceptionMsg() |
