Skip to content

Commit

Permalink
CLOUDSTACK-10120 : Allow migration of VM's from Cloudstack UI between…
Browse files Browse the repository at this point in the history
… the hosts with different version
  • Loading branch information
niteshsarda authored and DaanHoogland committed Nov 3, 2017
1 parent d077b3e commit 1d36b72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/com/cloud/server/ManagementServerImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -1432,7 +1432,7 @@ private Pair<List<HostVO>, Integer> searchForServers(final Long startIndex, fina
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;
Expand Down

0 comments on commit 1d36b72

Please sign in to comment.