summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDouwe Maan <douwe@gitlab.com>2017-06-27 19:41:23 +0000
committerDouwe Maan <douwe@gitlab.com>2017-06-27 19:41:23 +0000
commitdfad12ed0d1eaf4e61b63cced4a844b4b584e90f (patch)
tree2fa51b824c88caa6d20f180dbffc469d814a1b2b /lib
parent585e6aa5b20b31b1de01f7c5aa9aea67d7a377f4 (diff)
parent758e020019860c611237e23a8898fa59c9bca5eb (diff)
downloadgitlab-ce-dfad12ed0d1eaf4e61b63cced4a844b4b584e90f.tar.gz
Merge branch 'backport-system-check-fix' into 'master'
Make the SimpleExecutor rescue exceptions in the executing Checks See merge request !12487
Diffstat (limited to 'lib')
-rw-r--r--lib/system_check/simple_executor.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/system_check/simple_executor.rb b/lib/system_check/simple_executor.rb
index dc2d4643a01..e5986612908 100644
--- a/lib/system_check/simple_executor.rb
+++ b/lib/system_check/simple_executor.rb
@@ -75,6 +75,8 @@ module SystemCheck
check.show_error
end
+ rescue StandardError => e
+ $stdout.puts "Exception: #{e.message}".color(:red)
end
private