weizhouapache commented on issue #7590: URL: https://github.com/apache/cloudstack/issues/7590#issuecomment-1654886683
from the code, only check template name by keyword ``` // other criteria if (keyword != null) { sc.addAnd("name", SearchCriteria.Op.LIKE, "%" + keyword + "%"); } else if (name != null) { sc.addAnd("name", SearchCriteria.Op.EQ, name); } SearchCriteria.Op op = isIso ? Op.EQ : Op.NEQ; sc.addAnd("format", op, "ISO"); if (!hyperType.equals(HypervisorType.None)) { sc.addAnd("hypervisorType", SearchCriteria.Op.EQ, hyperType); } ``` -- 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: commits-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org