summaryrefslogtreecommitdiff
path: root/app/views/admin/health_check
diff options
context:
space:
mode:
authorDJ Mountney <david@twkie.net>2016-05-12 09:04:04 -0700
committerDJ Mountney <david@twkie.net>2016-05-12 09:04:04 -0700
commitad77ab0376fabf3dfadea86c716358964b526956 (patch)
tree9c92b2eb2a00f973735542d0631a1a2155723de2 /app/views/admin/health_check
parentc8f23bd2edc19f968446b149120df1f7798eb4b1 (diff)
downloadgitlab-ce-ad77ab0376fabf3dfadea86c716358964b526956.tar.gz
Add Changelog entryhealth-check-route
and drop exception handling around HealthCheck::Utils.process_checks, it wasn't needed
Diffstat (limited to 'app/views/admin/health_check')
-rw-r--r--app/views/admin/health_check/show.html.haml12
1 files changed, 6 insertions, 6 deletions
diff --git a/app/views/admin/health_check/show.html.haml b/app/views/admin/health_check/show.html.haml
index ed7025f7a0b..ad79fd26d0b 100644
--- a/app/views/admin/health_check/show.html.haml
+++ b/app/views/admin/health_check/show.html.haml
@@ -16,21 +16,21 @@
Health information can be reteived as plain text, json, or xml using:
%ul
%li
- %code= health_check_url(token:current_application_settings.health_check_access_token)
+ %code= health_check_url(token: current_application_settings.health_check_access_token)
%li
- %code= health_check_url(token:current_application_settings.health_check_access_token, format: :json)
+ %code= health_check_url(token: current_application_settings.health_check_access_token, format: :json)
%li
- %code= health_check_url(token:current_application_settings.health_check_access_token, format: :xml)
+ %code= health_check_url(token: current_application_settings.health_check_access_token, format: :xml)
%p.light
You can also ask for the status of specific services:
%ul
%li
- %code= health_check_url(token:current_application_settings.health_check_access_token, checks: :cache)
+ %code= health_check_url(token: current_application_settings.health_check_access_token, checks: :cache)
%li
- %code= health_check_url(token:current_application_settings.health_check_access_token, checks: :database)
+ %code= health_check_url(token: current_application_settings.health_check_access_token, checks: :database)
%li
- %code= health_check_url(token:current_application_settings.health_check_access_token, checks: :migrations)
+ %code= health_check_url(token: current_application_settings.health_check_access_token, checks: :migrations)
%hr
.panel.panel-default