Skip to content

Commit

Permalink
fixup! Merge pull request #471 from klihub/fixes/allow-lint-action-co…
Browse files Browse the repository at this point in the history
…de-annotation
  • Loading branch information
klihub committed Mar 5, 2025
1 parent 420fad1 commit 0edeb25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/plugins/topology-aware/policy/topology-aware-policy.go
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ func (p *policy) checkConstraints() error {
// check that if any reserved CPUs are isolated, it is the sole reserved CPU
if isolated := p.reserved.Intersection(p.isolated); !isolated.IsEmpty() {
if !p.reserved.Equals(isolated) {
return policyError("invalid reserved cpuset %s, mixes isolated (%s)and normal (%s)",
return policyError("invalid reserved cpuset %s, mixes isolated (%s) and normal (%s)",
p.reserved, isolated, p.reserved.Difference(isolated))
}
if isolated.Size() > 1 {
Expand Down

0 comments on commit 0edeb25

Please sign in to comment.