From 4dd80cd287d54a0ea8c14800176e28bcb1710f3b Mon Sep 17 00:00:00 2001 From: Florent Tapponnier Date: Sat, 18 Jul 2026 19:38:43 +0200 Subject: [PATCH] =?UTF-8?q?Revert=20"hotfix:=20bump=20cache=20keys=20v38/v?= =?UTF-8?q?41=20=E2=80=94=20purge=20poisoned=20aggregate=20showing=20await?= =?UTF-8?q?ing=20samples=20on=205=20live=20benches=20on=20prod=20home=20(#?= =?UTF-8?q?1303)"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit 0e585695add2d01297fd72225569a376663a681e. --- 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 1d44f574..1f2dd88f 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-v38", process.env.VERCEL_ENV === "production" ? "prod" : "all"], + ["bench-unfiltered-v37", process.env.VERCEL_ENV === "production" ? "prod" : "all"], { revalidate: 300, tags: ["benchmarks"] }, ); @@ -501,7 +501,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-v41", process.env.VERCEL_ENV === "production" ? "prod" : "all"], + ["all-benchmarks-v40", process.env.VERCEL_ENV === "production" ? "prod" : "all"], { revalidate: 300, tags: ["benchmarks"] }, ); export const loadAllBenchmarks = cache(loadAllBenchmarksCached);