nomad: Use AllocsByNodeTerminal in plan apply
This commit is contained in:
parent
abf7e52689
commit
2d7236eb95
|
@ -256,15 +256,12 @@ func evaluateNodePlan(snap *state.StateSnapshot, plan *structs.Plan, nodeID stri
|
|||
return false, nil
|
||||
}
|
||||
|
||||
// Get the existing allocations
|
||||
existingAlloc, err := snap.AllocsByNode(nodeID)
|
||||
// Get the existing allocations that are non-terminal
|
||||
existingAlloc, err := snap.AllocsByNodeTerminal(nodeID, false)
|
||||
if err != nil {
|
||||
return false, fmt.Errorf("failed to get existing allocations for '%s': %v", nodeID, err)
|
||||
}
|
||||
|
||||
// Filter on alloc state
|
||||
existingAlloc = structs.FilterTerminalAllocs(existingAlloc)
|
||||
|
||||
// Determine the proposed allocation by first removing allocations
|
||||
// that are planned evictions and adding the new allocations.
|
||||
proposed := existingAlloc
|
||||
|
|
Loading…
Reference in New Issue