Skip to content

Commit

Permalink
Merge pull request #17220 from agrare/bz_1534023_running_processes_do…
Browse files Browse the repository at this point in the history
…nt_eat_exception

Don't ignore errors in Vm#running_processes
  • Loading branch information
bdunne authored Mar 29, 2018
2 parents 265fba3 + b187c43 commit c6c282a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/models/vm.rb
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def running_processes
check = validate_collect_running_processes
unless check[:message].nil?
_log.warn(check[:message].to_s)
return pl
raise check[:message].to_s
end

begin
Expand Down

0 comments on commit c6c282a

Please sign in to comment.