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

M #-: Fix bug introduced in latest linting

(cherry picked from commit e5287048186c51ee91cfee26924d783fb1ca2de7)
This commit is contained in:
Tino Vazquez 2019-12-19 13:09:41 +01:00
parent 9ac5f03a60
commit 519f499934
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