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

status 10579: resolved fixed

reviewed-by: alex
This commit is contained in:
anthony 2011-09-27 14:57:02 -07:00
parent 1ef78e4db2
commit 59bb2e0289
2 changed files with 2 additions and 2 deletions

View File

@ -4050,7 +4050,7 @@ public abstract class CitrixResourceBase implements ServerResource, HypervisorRe
fullSync(cmd, conn);
cmd.setHypervisorType(HypervisorType.XenServer);
cmd.setCluster(_cluster);
cmd.setPoolSync(true);
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;
}
}