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:
parent
91d49b2973
commit
80f0559c53
2 changed files with 3 additions and 3 deletions
|
@ -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|
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
source 'https://rubygems.org'
|
||||
|
||||
platforms :ruby do
|
||||
gem 'sqlite3'
|
||||
gem 'sqlite3'
|
||||
end
|
||||
|
||||
platforms :jruby do
|
||||
|
|
Loading…
Add table
Reference in a new issue