Merge pull request #208 from KamilLepek/unregister_volume_fix
Removed wrong status check during unregister_volume_type in pyocf.
This commit is contained in:
commit
647601c514
@ -74,11 +74,9 @@ class OcfCtx:
|
|||||||
if not vol_type.type_id:
|
if not vol_type.type_id:
|
||||||
raise Exception("Already unregistered")
|
raise Exception("Already unregistered")
|
||||||
|
|
||||||
result = self.lib.ocf_ctx_unregister_volume_type(
|
self.lib.ocf_ctx_unregister_volume_type(
|
||||||
self.ctx_handle, vol_type.type_id
|
self.ctx_handle, vol_type.type_id
|
||||||
)
|
)
|
||||||
if result != 0:
|
|
||||||
raise OcfError("Volume type unregistration failed", result)
|
|
||||||
|
|
||||||
del self.volume_types[vol_type.type_id]
|
del self.volume_types[vol_type.type_id]
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user