Pearl1594 commented on code in PR #13635:
URL: https://github.com/apache/cloudstack/pull/13635#discussion_r3832189352
##########
engine/schema/src/main/java/com/cloud/vm/dao/VMInstanceDaoImpl.java:
##########
@@ -1261,4 +1262,17 @@ public int getVmCountByOfferingNotInDomain(Long
serviceOfferingId, List<Long> do
List<Integer> count = customSearch(sc, null);
return count.get(0);
}
+
+ @Override
+ public List<VMInstanceVO> listByIds(List<Long> ids) {
+ if (CollectionUtils.isEmpty(ids)) {
+ return Collections.emptyList();
+ }
+ SearchBuilder<VMInstanceVO> sb = createSearchBuilder();
Review Comment:
Im not sure what you mean @weizhouapache
--
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]