summaryrefslogtreecommitdiff
path: root/app/controllers/admin/health_check_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/admin/health_check_controller.rb')
-rw-r--r--app/controllers/admin/health_check_controller.rb6
1 files changed, 1 insertions, 5 deletions
diff --git a/app/controllers/admin/health_check_controller.rb b/app/controllers/admin/health_check_controller.rb
index 3153a765e35..241c7be0ea1 100644
--- a/app/controllers/admin/health_check_controller.rb
+++ b/app/controllers/admin/health_check_controller.rb
@@ -1,9 +1,5 @@
class Admin::HealthCheckController < Admin::ApplicationController
def show
- begin
- @errors = HealthCheck::Utils.process_checks('standard')
- rescue => e
- @errors = e.message.blank? ? e.class.to_s : e.message.to_s
- end
+ @errors = HealthCheck::Utils.process_checks('standard')
end
end