Skip to content

Commit 8126287

Browse files
committed
bump version
1 parent 70289a5 commit 8126287

4 files changed

Lines changed: 12 additions & 5 deletions

File tree

CHANGELOG.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff 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.

cloudify_libvirt/volume_tasks.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff 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

plugin.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ plugins:
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

88
data_types:
99

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
setup(
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',

0 commit comments

Comments
 (0)