bench: simplify cloud bench flow and align phased naming
Some checks failed
CI / Test (OTP 27.2 / Elixir 1.18.2) (push) Failing after 0s
CI / Test (OTP 28.4 / Elixir 1.19.4 + E2E) (push) Failing after 0s

This commit is contained in:
2026-03-20 20:48:41 +01:00
parent 4bd8663126
commit 9ed1d80b7f
6 changed files with 277 additions and 275 deletions

View File

@@ -210,8 +210,8 @@ export function summarisePhasedResults(results) {
}
// Per-level req and event metrics
for (const level of ["empty", "warm", "hot"]) {
const phase = phases[level];
for (const level of ["cold", "warm", "hot"]) {
const phase = phases[level] || (level === "cold" ? phases.empty : undefined);
if (!phase) continue;
const reqClients = (phase.req?.clients || [])