From cb22b38a95750c8535e8443136a98e3486220873 Mon Sep 17 00:00:00 2001 From: SukkaW Date: Sun, 10 Aug 2025 15:50:07 +0800 Subject: [PATCH] Chore: increase `cacheByDefault` from 3min to 10min --- Build/lib/fetch-retry.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Build/lib/fetch-retry.ts b/Build/lib/fetch-retry.ts index 8ca4d93e..76938378 100644 --- a/Build/lib/fetch-retry.ts +++ b/Build/lib/fetch-retry.ts @@ -122,7 +122,7 @@ setGlobalDispatcher(agent.compose( location: path.join(CACHE_DIR, 'undici-better-sqlite3-cache-store.db'), maxEntrySize: 1024 * 1024 * 100 // 100 MiB }), - cacheByDefault: 180 // 3 minutes + cacheByDefault: 600 // 10 minutes }) ));