You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by al...@apache.org on 2012/08/03 03:54:13 UTC

[10/30] git commit: rbd: Remove debug line

rbd: Remove debug line

This is no longer needed. It was here for testing purposes, but it was actually a bug in libvirt which has been resolved.


Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/1276aedd
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/1276aedd
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/1276aedd

Branch: refs/heads/vpc
Commit: 1276aedd351942d3eea1d0f5ba0710098b8b1639
Parents: d4be261
Author: Wido den Hollander <wi...@widodh.nl>
Authored: Thu Aug 2 23:05:00 2012 +0200
Committer: Wido den Hollander <wi...@widodh.nl>
Committed: Thu Aug 2 23:05:00 2012 +0200

----------------------------------------------------------------------
 .../kvm/storage/LibvirtStorageAdaptor.java         |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/1276aedd/plugins/hypervisors/kvm/src/com/cloud/hypervisor/kvm/storage/LibvirtStorageAdaptor.java
----------------------------------------------------------------------
diff --git a/plugins/hypervisors/kvm/src/com/cloud/hypervisor/kvm/storage/LibvirtStorageAdaptor.java b/plugins/hypervisors/kvm/src/com/cloud/hypervisor/kvm/storage/LibvirtStorageAdaptor.java
index 4efffd6..85c64ba 100644
--- a/plugins/hypervisors/kvm/src/com/cloud/hypervisor/kvm/storage/LibvirtStorageAdaptor.java
+++ b/plugins/hypervisors/kvm/src/com/cloud/hypervisor/kvm/storage/LibvirtStorageAdaptor.java
@@ -282,7 +282,6 @@ public class LibvirtStorageAdaptor implements StorageAdaptor {
 
         String[] userInfoTemp = userInfo.split(":");
         if (userInfoTemp.length == 2) {
-            s_logger.debug("libvirt secret information found. id: " + userInfoTemp[0] + " secret: " + userInfoTemp[1]);
             LibvirtSecretDef sd = new LibvirtSecretDef(usage.CEPH, uuid);
 
             Secret s = null;
@@ -302,7 +301,7 @@ public class LibvirtStorageAdaptor implements StorageAdaptor {
                     } catch (LibvirtException l) {
                         s_logger.debug("Failed to define secret with: " + l.toString());
                         }
-                    }
+                }
             }
             spd = new LibvirtStoragePoolDef(poolType.RBD, uuid, uuid, host, port, path, userInfoTemp[0], authType.CEPH, uuid);
         } else {