1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

ovirt_disk: Fix fail state condition of disk creation (#35093)

This commit is contained in:
Ondra Machacek 2018-01-23 21:31:57 +01:00 committed by ansibot
parent eacb4d0a4a
commit 542cd37f6e

View file

@ -616,6 +616,7 @@ def main():
ret = disks_module.create(
entity=disk,
result_state=otypes.DiskStatus.OK if lun is None else None,
fail_condition=lambda d: d.status == otypes.DiskStatus.ILLEGAL,
)
is_new_disk = ret['changed']
ret['changed'] = ret['changed'] or disks_module.update_storage_domains(ret['id'])