File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -31,3 +31,9 @@ releases:
3131 * Support storage pool creation.
3232 * Rename `params.resource_id` to `params.name`.
3333 * Support creation snapshot on external resources.
34+
35+ v0.8.0:
36+ * Support storage volume creation.
37+
38+ v0.8.1:
39+ * Fix volume wipe code.
Original file line number Diff line number Diff line change @@ -156,11 +156,12 @@ def stop(**kwargs):
156156 )
157157
158158 for i in xrange (10 ):
159- ctx .logger .info ("Tring to wipe vm {}/10" .format (i ))
159+ ctx .logger .info ("Tring to wipe volume {}/10" .format (i ))
160160 if volume .wipe (0 ) == 0 :
161161 break
162162 time .sleep (30 )
163-
163+ except libvirt .libvirtError as e :
164+ ctx .logger .info ('Failed to wipe the volume: {}' .format (repr (e )))
164165 finally :
165166 conn .close ()
166167
Original file line number Diff line number Diff line change 22 libvirt :
33 executor : central_deployment_agent
44 package_name : cloudify-libvirt-plugin
5- package_version : ' 0.8.0 '
6- source : https://github.com/cloudify-incubator/cloudify-libvirt-plugin/archive/0.8.0 .zip
5+ package_version : ' 0.8.1 '
6+ source : https://github.com/cloudify-incubator/cloudify-libvirt-plugin/archive/0.8.1 .zip
77
88data_types :
99
Original file line number Diff line number Diff line change 1515
1616setup (
1717 name = 'cloudify-libvirt-plugin' ,
18- version = '0.8.0 ' ,
18+ version = '0.8.1 ' ,
1919 description = 'support libvirt' ,
2020 author = 'Cloudify' ,
2121 author_email = 'hello@getcloudify.org' ,
You can’t perform that action at this time.
0 commit comments