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:
parent
8ca2fb57d6
commit
0a23209237
1 changed files with 3 additions and 0 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue