mirror of
https://github.com/OpenNebula/one.git
synced 2024-12-25 23:21:29 +03:00
parent
f1b9ad7473
commit
ddbaf61264
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user