1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00

Less familiar

This commit is contained in:
Mike Perham 2015-11-12 14:38:29 -08:00
parent 3a687a1a89
commit 31ffe63659

View file

@ -69,7 +69,7 @@ module Sidekiq
# 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.