sureshanaparti commented on a change in pull request #4329:
URL: https://github.com/apache/cloudstack/pull/4329#discussion_r709841952
##########
File path: engine/schema/src/main/java/com/cloud/dc/dao/ClusterDaoImpl.java
##########
@@ -154,6 +161,17 @@ public ClusterVO findBy(String name, long podId) {
return hypers;
}
+ @Override
+ public Set<HypervisorType> getDistictAvailableHypervisorsAcrossClusters() {
+ SearchCriteria<ClusterVO> sc = ClusterSearch.create();
+ List<ClusterVO> clusters = listBy(sc);
+ Set<HypervisorType> hypers = new HashSet<>();
Review comment:
```suggestion
Set<HypervisorType> hypervisorTypes = new HashSet<>();
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]