Skip to content

Commit

Permalink
fix status check on created machines
Browse files Browse the repository at this point in the history
  • Loading branch information
AshleyDumaine authored and eljohnson92 committed Jan 31, 2024
1 parent dd32f8a commit 92feaa0
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions controller/linodemachine_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,9 @@ import (
)

var skippedMachinePhases = map[string]bool{
string(clusterv1.MachinePhasePending): true,
string(clusterv1.MachinePhaseProvisioning): true,
string(clusterv1.MachinePhaseFailed): true,
string(clusterv1.MachinePhaseUnknown): true,
string(clusterv1.MachinePhasePending): true,
string(clusterv1.MachinePhaseFailed): true,
string(clusterv1.MachinePhaseUnknown): true,
}

var skippedInstanceStatuses = map[linodego.InstanceStatus]bool{
Expand Down

0 comments on commit 92feaa0

Please sign in to comment.