1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-23 22:50:09 +03:00

M #-: Fix bug introduced in latest linting

This commit is contained in:
Tino Vazquez 2019-12-19 13:09:41 +01:00
parent 6141ebbb86
commit e528704818
No known key found for this signature in database
GPG Key ID: 2FE9C32E94AEABBE

View File

@ -88,7 +88,8 @@ begin
vi_client = VCenterDriver::VIClient.new_from_host(host_id)
disk_xpath ="TEMPLATE/DISK[SOURCE=\"#{src_path_escaped}\"]"
one_disk = one_vm.retrieve_xmlelements(disk_xpath) rescue nil
one_disk.select! {|e| e['DISK_ID'] == disk_id }.first if one_disk
one_disk.select! {|e| e['DISK_ID'] == disk_id }
one_disk = one_disk.first if one_disk
raise 'Cannot find disk element in vm template' unless one_disk