File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
engine/storage/image/src/main/java/org/apache/cloudstack/storage/image
plugins/hypervisors/kvm/src/main/java/com/cloud/hypervisor/kvm/storage Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 ) {
You can’t perform that action at this time.
0 commit comments