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
(cherry picked from commit c6c282a)

Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1562780
  • Loading branch information
bdunne authored and simaishi committed Apr 2, 2018
1 parent 1dac6e3 commit 6a4e270
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 6a4e270

Please sign in to comment.