From 31ffe63659b673c43b8e4849304f809b90846880 Mon Sep 17 00:00:00 2001 From: Mike Perham Date: Thu, 12 Nov 2015 14:38:29 -0800 Subject: [PATCH] Less familiar --- lib/sidekiq/cli.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/sidekiq/cli.rb b/lib/sidekiq/cli.rb index 7495f06b4..43e3848c7 100644 --- a/lib/sidekiq/cli.rb +++ b/lib/sidekiq/cli.rb @@ -69,7 +69,7 @@ def run # touch the connection pool so it is created before we # fire startup and start multithreading. ver = conn.info['redis_version'] - raise "Oops, you are using Redis v#{ver}, Sidekiq requires Redis v2.8.0 or greater" if ver < '2.8' + raise "You are using Redis v#{ver}, Sidekiq requires Redis v2.8.0 or greater" if ver < '2.8' end # Before this point, the process is initializing with just the main thread.