diff options
author | Alejandro RodrÃguez <alejorro70@gmail.com> | 2017-08-31 18:00:40 -0300 |
---|---|---|
committer | Alejandro RodrÃguez <alejorro70@gmail.com> | 2017-09-05 20:12:18 -0300 |
commit | 8323e55b6c0d59627c584b49e70d4f6ccfd3c8f0 (patch) | |
tree | 7469c1bedb6b2023cb93e67ecb2cbf3c430b1c3c /lib/api/helpers/internal_helpers.rb | |
parent | 063e285e6a8c26a95809873fb32fefc54fe9bdb6 (diff) | |
download | gitlab-ce-8323e55b6c0d59627c584b49e70d4f6ccfd3c8f0.tar.gz |
Return a value to check if redis is available on /internal/check
Diffstat (limited to 'lib/api/helpers/internal_helpers.rb')
-rw-r--r-- | lib/api/helpers/internal_helpers.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/api/helpers/internal_helpers.rb b/lib/api/helpers/internal_helpers.rb index f57ff0f2632..4c0db4d42b1 100644 --- a/lib/api/helpers/internal_helpers.rb +++ b/lib/api/helpers/internal_helpers.rb @@ -46,6 +46,15 @@ module API ::MergeRequests::GetUrlsService.new(project).execute(params[:changes]) end + def redis_ping + result = Gitlab::Redis::SharedState.with { |redis| redis.ping } + + result == 'PONG' + rescue => e + Rails.logger.warn("GitLab: An unexpected error occurred in pinging to Redis: #{e}") + false + end + private def set_project |