diff options
author | Jacob Vosmaer <jacob@gitlab.com> | 2016-08-04 11:45:35 +0200 |
---|---|---|
committer | Jacob Vosmaer <jacob@gitlab.com> | 2016-08-04 11:45:35 +0200 |
commit | fb311531d042a629cb8558b2b4652fd30e9f35bc (patch) | |
tree | 40aa439fe34a97c45b0951264737c3b3c37f17ae /bin | |
parent | 933526140fa77d91eebb73469e567280c75d11dd (diff) | |
download | gitlab-shell-fb311531d042a629cb8558b2b4652fd30e9f35bc.tar.gz |
Improve output from redis check
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/check | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -32,4 +32,10 @@ end puts "\n" print "Send ping to redis server: " -abort unless GitlabNet.new.redis_client.ping +if GitlabNet.new.redis_client.ping + print 'OK' +else + abort 'FAILED' +end + +puts "\n" |