From 27abe40702c18c02cae2ad9a0fdd5a33199d9154 Mon Sep 17 00:00:00 2001 From: JonLuca DeCaro Date: Thu, 1 Aug 2024 14:05:45 -0700 Subject: [PATCH] feat: increase default http timeout to 60s per #353 --- lib/resolvers/http.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/resolvers/http.ts b/lib/resolvers/http.ts index 36c9880d..9d1a4621 100644 --- a/lib/resolvers/http.ts +++ b/lib/resolvers/http.ts @@ -23,7 +23,7 @@ export default { /** * HTTP request timeout (in milliseconds). */ - timeout: 5000, // 5 seconds + timeout: 60_000, // 60 seconds /** * The maximum number of HTTP redirects to follow.