From cd3d61e587ba3bbc013e7d68a7b8386b34b547fb Mon Sep 17 00:00:00 2001 From: "Adam H. Sparks" Date: Sun, 3 Nov 2024 16:23:38 +0800 Subject: [PATCH] increase timeout --- R/internal_functions.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/internal_functions.R b/R/internal_functions.R index 1a35315..e2cdf15 100644 --- a/R/internal_functions.R +++ b/R/internal_functions.R @@ -50,7 +50,7 @@ .retry_download <- function(url, .f) { response <- httr2::request(base_url = url) |> - httr2::req_options(http_version = 2, timeout = 120) |> + httr2::req_options(http_version = 2, timeout = 500) |> httr2::req_retry(max_tries = 10) |> httr2::req_perform()