WaitForIP should not return an error if an IP is not found (#10321)

pull/10328/head
jhawk28 5 years ago committed by GitHub
parent fab442eb52
commit 89199a4c57
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save