Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion src/lib/removed-benches.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,5 @@ export const REMOVED_BENCH_SLUGS = new Set([
"indexing-freshness",
"rpc-keyed-latency",
"explorer-chain-coverage",
"solana-rpc",
"portfolio-chain-coverage",
]);
6 changes: 3 additions & 3 deletions src/lib/spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ const loadBenchmarkUnfilteredCached = unstable_cache(
// buckets (gap rendering fix). Cached v26 entries hold the old
// hole-compressed arrays whose indices no longer map onto the nominal
// step grid the chart back-computes timestamps from.
["bench-unfiltered-v27", process.env.VERCEL_ENV === "production" ? "prod" : "all"],
["bench-unfiltered-v28", process.env.VERCEL_ENV === "production" ? "prod" : "all"],
{ revalidate: 300, tags: ["benchmarks"] },
);

Expand Down Expand Up @@ -428,7 +428,7 @@ const loadAllBenchmarksCached = unstable_cache(
// gated catalog to /products for 30+ min after the deploy).
// v29: bumped with bench-unfiltered-v26 (monad-rpc + megaeth-rpc ship).
// v30: bumped with bench-unfiltered-v27 (dense series with nulls).
["all-benchmarks-v30", process.env.VERCEL_ENV === "production" ? "prod" : "all"],
["all-benchmarks-v31", process.env.VERCEL_ENV === "production" ? "prod" : "all"],
{ revalidate: 300, tags: ["benchmarks"] },
);
export const loadAllBenchmarks = cache(loadAllBenchmarksCached);
Expand Down Expand Up @@ -507,7 +507,7 @@ const loadBenchmarkFiltered = unstable_cache(
// v16: bumped with the bench 074 ship (lockstep rule, see all-benchmarks-v28).
// v17: bumped with the monad-rpc + megaeth-rpc ship (lockstep rule).
// v18: bumped with bench-unfiltered-v27 (dense series with nulls).
["bench-filters-v18", process.env.VERCEL_ENV === "production" ? "prod" : "all"],
["bench-filters-v19", process.env.VERCEL_ENV === "production" ? "prod" : "all"],
{ revalidate: 300, tags: ["benchmarks"] }
);

Expand Down
Loading