diff --git a/client/tomcatconf/components-premium.xml.in b/client/tomcatconf/components-premium.xml.in index 873a0d0601b..5cfbbf19b76 100755 --- a/client/tomcatconf/components-premium.xml.in +++ b/client/tomcatconf/components-premium.xml.in @@ -10,18 +10,6 @@ true - - - - - - - - - - - - diff --git a/client/tomcatconf/components.xml.in b/client/tomcatconf/components.xml.in index 28746bfbdcd..5e536df7cdf 100755 --- a/client/tomcatconf/components.xml.in +++ b/client/tomcatconf/components.xml.in @@ -70,10 +70,10 @@ - - - + + + diff --git a/server/src/com/cloud/ha/VmwareInvestigator.java b/server/src/com/cloud/ha/VmwareInvestigator.java index 8eb0995ef95..c7d4a18fdf0 100644 --- a/server/src/com/cloud/ha/VmwareInvestigator.java +++ b/server/src/com/cloud/ha/VmwareInvestigator.java @@ -21,6 +21,7 @@ import javax.ejb.Local; import com.cloud.host.HostVO; import com.cloud.host.Status; +import com.cloud.hypervisor.Hypervisor.HypervisorType; import com.cloud.utils.component.AdapterBase; import com.cloud.vm.VMInstanceVO; @@ -31,11 +32,18 @@ public class VmwareInvestigator extends AdapterBase implements Investigator { @Override public Status isAgentAlive(HostVO agent) { + if(agent.getHypervisorType() == HypervisorType.VMware) + return Status.Disconnected; + return null; } @Override public Boolean isVmAlive(VMInstanceVO vm, HostVO host) { + if(vm.getHypervisorType() == HypervisorType.VMware) + return true; + return null; } } +