Skip to content

Commit

Permalink
Merge pull request kubernetes-sigs#576 from ffromani/nrt-integ-test-d…
Browse files Browse the repository at this point in the history
…eflake

nodetopologymatch: improve integration tests
  • Loading branch information
k8s-ci-robot authored May 23, 2023
2 parents 0ab88ad + 2577aab commit 7ae6d3f
Show file tree
Hide file tree
Showing 4 changed files with 741 additions and 122 deletions.
2 changes: 1 addition & 1 deletion pkg/noderesourcetopology/least_numa.go
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ func nodesAvgDistance(numaNodes NUMANodeList, nodes ...int) float32 {
cost, ok := numaNodes[node1].Costs[node2]
// we couldn't read Costs assign maxDistanceValue
if !ok {
klog.Warningf("cannot retrieve Costs information for node : %s", node1)
klog.Warningf("cannot retrieve Costs information for node %d", node2)
cost = maxDistanceValue
}
accu += cost
Expand Down
Loading

0 comments on commit 7ae6d3f

Please sign in to comment.