Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/lib/spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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"] },
);

Expand Down Expand Up @@ -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);
Expand Down
Loading