mirror of https://github.com/apache/cloudstack.git
This reverts commit e06f80e899.
This commit is contained in:
parent
03bdf11846
commit
adbf370909
|
|
@ -532,6 +532,11 @@ public class TemplateServiceImpl implements TemplateService {
|
|||
s_logger.info("Skip downloading template " + tmplt.getUniqueName() + " since no url is specified.");
|
||||
continue;
|
||||
}
|
||||
// if this is private template, skip sync to a new image store
|
||||
if (isSkipTemplateStoreDownload(tmplt, zoneId)) {
|
||||
s_logger.info("Skip sync downloading private template " + tmplt.getUniqueName() + " to a new image store");
|
||||
continue;
|
||||
}
|
||||
|
||||
// if this is a region store, and there is already an DOWNLOADED entry there without install_path information, which
|
||||
// means that this is a duplicate entry from migration of previous NFS to staging.
|
||||
|
|
|
|||
Loading…
Reference in New Issue