Merge branch 'ce-6635-extract-ee-specific-files-lines-for-app-controllers-admin-health_check_controller-rb' into 'master'

Make Admin::HealthCheckController EE-compatible

See merge request gitlab-org/gitlab-ce!23879
This commit is contained in:
Lin Jen-Shin 2018-12-18 13:24:37 +00:00
commit da54f81bc0

View file

@ -2,6 +2,12 @@
class Admin::HealthCheckController < Admin::ApplicationController
def show
@errors = HealthCheck::Utils.process_checks(['standard'])
@errors = HealthCheck::Utils.process_checks(checks)
end
private
def checks
['standard']
end
end