DaanHoogland closed pull request #2300: CLOUDSTACK-10120 : Allow migration of
VM's from Cloudstack UI between the hosts with different version
URL: https://github.com/apache/cloudstack/pull/2300
This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:
As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):
diff --git a/server/src/com/cloud/server/ManagementServerImpl.java
b/server/src/com/cloud/server/ManagementServerImpl.java
index b135b4ebd77..da987ca1330 100644
--- a/server/src/com/cloud/server/ManagementServerImpl.java
+++ b/server/src/com/cloud/server/ManagementServerImpl.java
@@ -1432,7 +1432,7 @@ private boolean hasSuitablePoolsForVolume(final VolumeVO
volume, final Host host
sb.and("clusterId", sb.entity().getClusterId(), SearchCriteria.Op.EQ);
sb.and("resourceState", sb.entity().getResourceState(),
SearchCriteria.Op.EQ);
sb.and("hypervisorType", sb.entity().getHypervisorType(),
SearchCriteria.Op.EQ);
- sb.and("hypervisorVersion", sb.entity().getHypervisorVersion(),
SearchCriteria.Op.EQ);
+ sb.and("hypervisorVersion", sb.entity().getHypervisorVersion(),
SearchCriteria.Op.GTEQ);
final String haTag = _haMgr.getHaTag();
SearchBuilder<HostTagVO> hostTagSearch = null;
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services