WaitForIP should not return an error if an IP is not found (#10321)
This commit is contained in:
parent
fab442eb52
commit
89199a4c57
|
@ -658,7 +658,8 @@ func (vm *VirtualMachineDriver) WaitForIP(ctx context.Context, ipNet *net.IPNet)
|
|||
}
|
||||
}
|
||||
|
||||
return "", fmt.Errorf("unable to find an IP")
|
||||
// unable to find an IP
|
||||
return "", nil
|
||||
}
|
||||
|
||||
func (vm *VirtualMachineDriver) PowerOff() error {
|
||||
|
|
Loading…
Reference in New Issue