bug 10579: disable pool vm sync and disable hostTrack for XenServer,

status 10579: resolved fixed

reviewed-by: alex

Conflicts:

	core/src/com/cloud/hypervisor/xen/resource/CitrixResourceBase.java
This commit is contained in:
anthony 2011-09-28 12:41:24 -07:00
parent b9df06619a
commit aef74ff521
2 changed files with 3 additions and 3 deletions

View File

@ -3993,8 +3993,8 @@ public abstract class CitrixResourceBase implements ServerResource, HypervisorRe
fullHostSync(cmd, conn);
cmd.setHypervisorType(HypervisorType.XenServer);
cmd.setCluster(_cluster);
cmd.setPoolSync(true);
cmd.setCluster(_cluster);
cmd.setPoolSync(false);
StartupStorageCommand sscmd = initializeLocalSR(conn);
if (sscmd != null) {

View File

@ -61,6 +61,6 @@ public class XenServerGuru extends HypervisorGuruBase implements HypervisorGuru
@Override
public boolean trackVmHostChange() {
return true;
return false;
}
}