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

Don't dispatch until all Processors are spun up

This commit is contained in:
Mike Perham 2015-10-07 08:37:51 -07:00
parent 42c3743a32
commit 70bd688059

View file

@ -47,6 +47,8 @@ module Sidekiq
def start
@ready.each do |x|
x.start
end
@ready.each do |x|
dispatch
end
end