mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-31 23:37:01 +00:00
Merge pull request #122969 from kerthcet/fix/claim
[DRA] Fix indexing the error value in unavailableClaim
This commit is contained in:
commit
6c493a1ef9
@ -747,7 +747,7 @@ func (pl *dynamicResources) Filter(ctx context.Context, cs *framework.CycleState
|
||||
state.unavailableClaims = sets.New[int]()
|
||||
}
|
||||
|
||||
for index := range unavailableClaims {
|
||||
for _, index := range unavailableClaims {
|
||||
claim := state.claims[index]
|
||||
// Deallocation makes more sense for claims with
|
||||
// delayed allocation. Claims with immediate allocation
|
||||
|
Loading…
Reference in New Issue
Block a user