From 7c1a81858220cec3aaad61f99d64e34af5a63b69 Mon Sep 17 00:00:00 2001 From: Christoph Kluge Date: Fri, 21 Nov 2025 16:05:47 +0100 Subject: [PATCH] fix outdated condition in findJobFootprintThresholds --- web/frontend/src/generic/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/frontend/src/generic/utils.js b/web/frontend/src/generic/utils.js index 5a79cff..9b5cebf 100644 --- a/web/frontend/src/generic/utils.js +++ b/web/frontend/src/generic/utils.js @@ -374,7 +374,7 @@ export function findJobFootprintThresholds(job, stat, metricConfig) { For shared jobs, scale thresholds by the fraction of the job's HWThreads to the node's HWThreads. 'stat' is one of: avg, min, max */ - if (job.exclusive === 1 || stat === "avg") { + if (job.shared === "none" || stat === "avg") { return defaultThresholds } else { const topol = getContext("getHardwareTopology")(job.cluster, job.subCluster)