From af7236e50ddc7c8ef8c83bb2aba402e6d9ab481d Mon Sep 17 00:00:00 2001 From: Will Lo Date: Sat, 15 Nov 2025 06:02:46 -0800 Subject: [PATCH 1/2] test proxy --- packages/core/src/shared/resourcefetcher/httpResourceFetcher.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/shared/resourcefetcher/httpResourceFetcher.ts b/packages/core/src/shared/resourcefetcher/httpResourceFetcher.ts index b79b673c74d..fc745b03fcf 100644 --- a/packages/core/src/shared/resourcefetcher/httpResourceFetcher.ts +++ b/packages/core/src/shared/resourcefetcher/httpResourceFetcher.ts @@ -117,7 +117,7 @@ export class HttpResourceFetcher implements ResourceFetcher { return req.response.finally(() => cancelListener?.dispose()) }, { - timeout: 3000, + timeout: 10000, interval: 100, backoff: 2, retryOnFail: (error: Error) => { From 0a8b8abb95fc11bed5c2f43c6a2757dfb3de41fa Mon Sep 17 00:00:00 2001 From: Will Lo Date: Sun, 16 Nov 2025 16:05:04 -0800 Subject: [PATCH 2/2] 15000 --- packages/core/src/shared/resourcefetcher/httpResourceFetcher.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/shared/resourcefetcher/httpResourceFetcher.ts b/packages/core/src/shared/resourcefetcher/httpResourceFetcher.ts index fc745b03fcf..f01865d5ae0 100644 --- a/packages/core/src/shared/resourcefetcher/httpResourceFetcher.ts +++ b/packages/core/src/shared/resourcefetcher/httpResourceFetcher.ts @@ -117,7 +117,7 @@ export class HttpResourceFetcher implements ResourceFetcher { return req.response.finally(() => cancelListener?.dispose()) }, { - timeout: 10000, + timeout: 15000, interval: 100, backoff: 2, retryOnFail: (error: Error) => {