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

If possible, shutdown asap rather than waiting the full timeout #69

This commit is contained in:
Mike Perham 2012-03-11 20:06:20 -07:00
parent 8ca2fb57d6
commit 0a23209237

View file

@ -74,6 +74,7 @@ module Sidekiq
@busy.delete(processor)
if stopped?
processor.terminate if processor.alive?
signal(:shutdown) if @busy.empty?
else
@ready << processor
end
@ -87,6 +88,8 @@ module Sidekiq
unless stopped?
@ready << Processor.new_link(current_actor)
dispatch
else
signal(:shutdown) if @busy.empty?
end
end