nvazquez commented on code in PR #12472:
URL: https://github.com/apache/cloudstack/pull/12472#discussion_r2727139233
##########
server/src/main/java/com/cloud/api/query/QueryManagerImpl.java:
##########
@@ -5406,6 +5413,9 @@ protected Pair<List<ManagementServerJoinVO>, Integer>
listManagementServersInter
if (name != null) {
sc.addAnd("name", SearchCriteria.Op.EQ, name);
}
+ if (version != null) {
+ sc.addAnd("version", SearchCriteria.Op.EQ, version);
Review Comment:
@harikrishna-patnala @DaanHoogland I think passing the parameter must be an
exact search to match the other parameters behaviour. However, this API
supports the `keyword` parameter and uses LIKE for `name`, `status` and `type`
- we can include `version` as well here
--
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]