Skip to content

Commit d167f0c

Browse files
JoaoJandredhslove
authored andcommitted
Merge branch '4.19'
1 parent b3ca884 commit d167f0c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,7 @@ public void handleTemplateSync(DataStore store) {
535535
}
536536
// if this is private template, skip sync to a new image store
537537
if (isSkipTemplateStoreDownload(tmplt, zoneId)) {
538-
s_logger.info("Skip sync downloading private template " + tmplt.getUniqueName() + " to a new image store");
538+
logger.info("Skip sync downloading private template " + tmplt.getUniqueName() + " to a new image store");
539539
continue;
540540
}
541541

plugins/hypervisors/kvm/src/main/java/com/cloud/hypervisor/kvm/storage/LibvirtStorageAdaptor.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -914,11 +914,11 @@ public boolean deleteStoragePool(String uuid) {
914914

915915
// decrement and check if storage pool still in use
916916
if (decStoragePoolRefCount(uuid)) {
917-
s_logger.info(String.format("deleteStoragePool: Storage pool %s still in use", uuid));
917+
logger.info(String.format("deleteStoragePool: Storage pool %s still in use", uuid));
918918
return true;
919919
}
920920

921-
Connect conn;
921+
Connect conn = null;
922922
try {
923923
conn = LibvirtConnection.getConnection();
924924
} catch (LibvirtException e) {

0 commit comments

Comments
 (0)