Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -532,6 +532,11 @@
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;

Check warning on line 538 in engine/storage/image/src/main/java/org/apache/cloudstack/storage/image/TemplateServiceImpl.java

View check run for this annotation

Codecov / codecov/patch

engine/storage/image/src/main/java/org/apache/cloudstack/storage/image/TemplateServiceImpl.java#L537-L538

Added lines #L537 - L538 were not covered by tests
}

// 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.
Expand Down
Loading