1
0
mirror of https://github.com/OpenNebula/one.git synced 2024-12-25 23:21:29 +03:00

L #-: Use File.empty?

(cherry picked from commit 88fa753e86)
This commit is contained in:
Tino Vázquez 2023-03-06 11:43:59 +01:00
parent f1b9ad7473
commit ddbaf61264
No known key found for this signature in database
GPG Key ID: 14201E424D02047E
2 changed files with 3 additions and 3 deletions

View File

@ -400,7 +400,7 @@ class ExecDriver < VirtualMachineDriver
# ----------------------------------------------------------------------
local_dfile = action.data[:local_dfile]
if !local_dfile || File.zero?(local_dfile)
if !local_dfile || File.empty?(local_dfile)
send_message(ACTION[:deploy], RESULT[:failure], id,
"Cannot open deployment file #{local_dfile}")
return

View File

@ -224,9 +224,9 @@ class MicroVM
t_start = Time.now
timeout = @one.fcrc[:cgroup_delete_timeout]
next while !File.read(path).empty? && (Time.now - t_start < timeout)
next while !File.empty?(path) && (Time.now - t_start < timeout)
File.read(path).empty?
File.empty?(path)
rescue Errno::ENOENT
end
# rubocop:enable Lint/SuppressedException