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

@halorgium's sweet hack

This commit is contained in:
Mike Perham 2013-09-21 20:18:00 -07:00
parent 92f62f1af0
commit 1e24e783a0

View file

@ -32,3 +32,9 @@ REDIS = Sidekiq::RedisConnection.create(:url => redis_url, :namespace => 'testy'
Sidekiq.configure_client do |config|
config.redis = { :url => redis_url, :namespace => 'testy' }
end
Celluloid.class_eval do
def self.shutdown
$stderr.puts "Celluloid shutdown disabled"
end
end