mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2025-11-26 03:23:07 +01:00
fix outdated condition in findJobFootprintThresholds
This commit is contained in:
@@ -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.
|
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
|
'stat' is one of: avg, min, max
|
||||||
*/
|
*/
|
||||||
if (job.exclusive === 1 || stat === "avg") {
|
if (job.shared === "none" || stat === "avg") {
|
||||||
return defaultThresholds
|
return defaultThresholds
|
||||||
} else {
|
} else {
|
||||||
const topol = getContext("getHardwareTopology")(job.cluster, job.subCluster)
|
const topol = getContext("getHardwareTopology")(job.cluster, job.subCluster)
|
||||||
|
|||||||
Reference in New Issue
Block a user