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

This commit is contained in:
jhawk28 2020-12-02 04:30:42 -05:00 committed by GitHub
parent fab442eb52
commit 89199a4c57
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -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 {