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

Now works against Celluloid HEAD

This commit is contained in:
Mike Perham 2012-03-30 21:22:19 -07:00
parent 91d49b2973
commit 80f0559c53
2 changed files with 3 additions and 3 deletions

View file

@ -40,8 +40,8 @@ module Sidekiq
@done = true
@fetcher.terminate! if @fetcher.alive?
@ready.each { |x| x.terminate! if x.alive? }
@fetcher.terminate if @fetcher.alive?
@ready.each { |x| x.terminate if x.alive? }
@ready.clear
redis do |conn|

View file

@ -1,7 +1,7 @@
source 'https://rubygems.org'
platforms :ruby do
gem 'sqlite3'
gem 'sqlite3'
end
platforms :jruby do