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:
commit
da54f81bc0
1 changed files with 7 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue