[NEW PATCH] BZ#735068 - remove not existing volume.spUUID from VolumeGeneralException. (via gerrit-bot)

David Naori dnaori at redhat.com
Mon Sep 5 09:06:29 UTC 2011


New patch submitted by David Naori (dnaori at redhat.com)

You can review this change at: http://gerrit.usersys.redhat.com/889

commit e33ef0b0acc7042ab03c20409112680d8c8cf6e8
Author: David Naori <dnaori at redhat.com>
Date:   Thu Sep 1 15:42:55 2011 +0300

    BZ#735068 - remove not existing volume.spUUID from VolumeGeneralException.
    
    Change-Id: Icd1f1cba77c40d4062b0a424dd154ca356e31a0f

diff --git a/vdsm/storage/storage_exception.py b/vdsm/storage/storage_exception.py
index 421737b..8ebf340 100644
--- a/vdsm/storage/storage_exception.py
+++ b/vdsm/storage/storage_exception.py
@@ -75,10 +75,9 @@ class VolumeGeneralException(GeneralException):
     def __init__(self, volume, *args):
         try:
             sdUUID = "sdUUID: %s" % volume.sdUUID
-            spUUID = "spUUID: %s" % volume.spUUID
             imgUUID = "imgUUID: %s" % volume.imgUUID
             volUUID = "volUUID: %s" % volume.volUUID
-            self.value = [spUUID, sdUUID, imgUUID, volUUID]
+            self.value = [sdUUID, imgUUID, volUUID]
         except:
             self.value = [repr(volume)]
 




More information about the vdsm-patches mailing list