Skip to content

Commit 1d36b72

Browse files
niteshsardaDaanHoogland
authored andcommitted
CLOUDSTACK-10120 : Allow migration of VM's from Cloudstack UI between the hosts with different version
1 parent d077b3e commit 1d36b72

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

server/src/com/cloud/server/ManagementServerImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1432,7 +1432,7 @@ private Pair<List<HostVO>, Integer> searchForServers(final Long startIndex, fina
14321432
sb.and("clusterId", sb.entity().getClusterId(), SearchCriteria.Op.EQ);
14331433
sb.and("resourceState", sb.entity().getResourceState(), SearchCriteria.Op.EQ);
14341434
sb.and("hypervisorType", sb.entity().getHypervisorType(), SearchCriteria.Op.EQ);
1435-
sb.and("hypervisorVersion", sb.entity().getHypervisorVersion(), SearchCriteria.Op.EQ);
1435+
sb.and("hypervisorVersion", sb.entity().getHypervisorVersion(), SearchCriteria.Op.GTEQ);
14361436

14371437
final String haTag = _haMgr.getHaTag();
14381438
SearchBuilder<HostTagVO> hostTagSearch = null;

0 commit comments

Comments
 (0)