rajujith commented on code in PR #7857:
URL: https://github.com/apache/cloudstack/pull/7857#discussion_r2333387381
##########
server/src/main/java/com/cloud/template/TemplateManagerImpl.java:
##########
@@ -2419,7 +2419,7 @@ void validateDetails(VMTemplateVO template, Map<String,
String> details) {
void verifyTemplateId(Long id) {
// Don't allow to modify system template
if (id.equals(Long.valueOf(1))) {
- InvalidParameterValueException ex = new
InvalidParameterValueException("Unable to update template/iso of specified id");
+ InvalidParameterValueException ex = new
InvalidParameterValueException("Unable to update Template/ISO of specified id");
Review Comment:
'ID'
##########
server/src/main/java/com/cloud/template/TemplateManagerImpl.java:
##########
@@ -2478,7 +2478,7 @@ public VirtualMachineTemplate
linkUserDataToTemplate(LinkUserDataToTemplateCmd c
template = _tmpltDao.findById(isoId);
}
if (template == null) {
- throw new InvalidParameterValueException(String.format("unable to
find template/ISO with id %s", templateId == null? isoId : templateId));
+ throw new InvalidParameterValueException(String.format("Unable to
find Template/ISO with id %s", templateId == null? isoId : templateId));
Review Comment:
'ID'
--
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]