From d8f4c3937845ea2090fe28cb88cf55786a4308e7 Mon Sep 17 00:00:00 2001 From: Florent Tapponnier Date: Sat, 18 Jul 2026 12:27:50 +0200 Subject: [PATCH] =?UTF-8?q?hotfix:=20bump=20bench-set=20+=20all-benchmarks?= =?UTF-8?q?=20cache=20keys=20(v36/v39)=20=E2=80=94=20purge=20poisoned=20ag?= =?UTF-8?q?gregate=20after=20SRH=20stuck=20pool?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/lib/spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/spec.ts b/src/lib/spec.ts index 3a9de61a..1393b62e 100644 --- a/src/lib/spec.ts +++ b/src/lib/spec.ts @@ -297,7 +297,7 @@ const loadBenchmarkUnfilteredCached = unstable_cache( // v31: 084 indexer-latency dropped entirely (spec + harness deleted; // HyperSync + The Graph required paid credentials for sustained // cadence). Bench SET shrank. - ["bench-unfiltered-v35", process.env.VERCEL_ENV === "production" ? "prod" : "all"], + ["bench-unfiltered-v36", process.env.VERCEL_ENV === "production" ? "prod" : "all"], { revalidate: 300, tags: ["benchmarks"] }, ); @@ -456,7 +456,7 @@ const loadAllBenchmarksCached = unstable_cache( // v32: bumped with bench-unfiltered-v30 (081 slug rename ws-head-latency // -> ws-head-latency-ethereum + ungate on prod). // v34: bumped with bench-unfiltered-v31 (084 indexer-latency dropped). - ["all-benchmarks-v38", process.env.VERCEL_ENV === "production" ? "prod" : "all"], + ["all-benchmarks-v39", process.env.VERCEL_ENV === "production" ? "prod" : "all"], { revalidate: 300, tags: ["benchmarks"] }, ); export const loadAllBenchmarks = cache(loadAllBenchmarksCached);