Merge pull request #13090 from soapy1/remove-virtualbox-hyperv-check

Removes check for hyperv being enabled when verifying virtualbox is usable on windows.
This commit is contained in:
Sophia Castellarin 2023-02-21 17:17:51 -08:00 committed by GitHub
commit 9efc3521d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,12 +16,6 @@ module VagrantPlugins
# which will break us out of execution of the middleware sequence.
Driver::Meta.new.verify!
if Vagrant::Util::Platform.windows? && Vagrant::Util::Platform.windows_hyperv_enabled?
@logger.error("Virtualbox and Hyper-V cannot be used together at the same time on Windows and will result in a system crash.")
raise Vagrant::Errors::HypervVirtualBoxError
end
# Carry on.
@app.call(env)
end