class Bundler::ParallelWorkers::Worker
def stop_threads
Stop the worker threads by sending a poison object down the request queue
def stop_threads @threads.each do @request_queue.enq POISON end @threads.each do |thread| thread.join end end
def stop_threads @threads.each do @request_queue.enq POISON end @threads.each do |thread| thread.join end end