bench: simplify cloud bench flow and align phased naming
This commit is contained in:
@@ -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 || [])
|
||||
|
||||
Reference in New Issue
Block a user