From d9c6f78f38c8444462f42dcd369f1892b5bd4202 Mon Sep 17 00:00:00 2001 From: kappa Date: Thu, 29 Jan 2026 10:22:17 +0900 Subject: [PATCH] fix: increase pricing fetch timeout to 180s for AWS MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit AWS pricing generation creates ~25K records (870 instances × 29 regions) which requires more time for D1 upsert operations. Co-Authored-By: Claude Opus 4.5 --- src/services/sync.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/sync.ts b/src/services/sync.ts index ce5e49c..1efa684 100644 --- a/src/services/sync.ts +++ b/src/services/sync.ts @@ -330,7 +330,7 @@ export class SyncOrchestrator { dbG8Map, dbVpuMap ), - 60000, + 180000, // AWS needs ~25K records upsert (870 instances × 29 regions) `${provider} fetch pricing` );