瀏覽代碼

Reraise if errors occur when setting description

and suggest checking for RFC1035 compliance.
Nuwan Goonasekera 9 年之前
父節點
當前提交
34ae3bd7b3
共有 1 個文件被更改,包括 4 次插入1 次删除
  1. 4 1
      cloudbridge/cloud/providers/gce/resources.py

+ 4 - 1
cloudbridge/cloud/providers/gce/resources.py

@@ -1331,7 +1331,10 @@ class GCEVolume(BaseVolume):
                             resource=self.name,
                             body=request_body).execute())
         except Exception as e:
-            cb.log.warning('Exception while setting volume description: %s', e)
+            cb.log.warning('Exception while setting volume description: %s.'
+                           'Check for invalid characters in description. Should'
+                           'confirm to RFC1035.', e)
+            raise e
         self.refresh()
 
     @property