mirror of https://github.com/apache/cloudstack.git
Workaround for broken bvt/ simulator tests
Actually this check makes no sense since it breaks basic zone for all hypervisors except KVM, XS Will revisit later
This commit is contained in:
parent
ab2e3b9e07
commit
ccac84c469
|
|
@ -445,7 +445,8 @@ public class ResourceManagerImpl extends ManagerBase implements ResourceManager,
|
|||
}
|
||||
|
||||
if (zone.isSecurityGroupEnabled()) {
|
||||
if( hypervisorType != HypervisorType.KVM && hypervisorType != HypervisorType.XenServer ) {
|
||||
if (hypervisorType != HypervisorType.KVM && hypervisorType != HypervisorType.XenServer
|
||||
&& hypervisorType != HypervisorType.Simulator) {
|
||||
throw new InvalidParameterValueException("Don't support hypervisor type " + hypervisorType + " in advanced security enabled zone");
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue