summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbin/check8
1 files changed, 7 insertions, 1 deletions
diff --git a/bin/check b/bin/check
index d34a2d0..9585416 100755
--- a/bin/check
+++ b/bin/check
@@ -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"