Skip to content

Commit c6ff0f2

Browse files
committed
fix_typos
1 parent 0d2f3d6 commit c6ff0f2

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

engine/storage/image/src/main/java/org/apache/cloudstack/storage/image/TemplateServiceImpl.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -299,15 +299,15 @@ public void handleSysTemplateDownload(HypervisorType hostHyper, Long dcId) {
299299

300300
protected boolean shouldDownloadTemplateToStore(VMTemplateVO template, DataStore store) {
301301
if (dataStoreDao.findById(store.getId()).isReadonly()) {
302-
logger.debug("Template [{}] will not be download to image store [{}] because this store is marked as read-only.", template.getUniqueName(),
302+
logger.debug("Template [{}] will not be downloaded to image store [{}] because this store is marked as read-only.", template.getUniqueName(),
303303
store.getName());
304304
return false;
305305
}
306306

307307
Long zoneId = store.getScope().getScopeId();
308308
DataStore directedStore = _tmpltMgr.verifyHeuristicRulesForZone(template, zoneId);
309309
if (directedStore != null && store.getId() != directedStore.getId()) {
310-
logger.info("Template [{}] will not be download to image store [{}], as a heuristic rule is directing it to another store.",
310+
logger.info("Template [{}] will not be downloaded to image store [{}], as a heuristic rule is directing it to another store.",
311311
template.getUniqueName(), store.getName());
312312
return false;
313313
}

engine/storage/src/main/java/org/apache/cloudstack/storage/image/BaseImageStoreDriverImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ public void createAsync(DataStore dataStore, DataObject data, AsyncCompletionCal
179179
caller.setContext(context);
180180
if (data.getType() == DataObjectType.TEMPLATE) {
181181
if (dataStoreDao.findById(dataStore.getId()).isReadonly()) {
182-
logger.debug("Template [{}] will not be download to image store [{}] because this store is marked as read-only.", data.getName(),
182+
logger.debug("Template [{}] will not be downloaded to image store [{}] because this store is marked as read-only.", data.getName(),
183183
dataStore.getName());
184184
return;
185185
}

0 commit comments

Comments
 (0)