class Puma::PluginRegistry

def fire_background

def fire_background
  @background.each_with_index do |b, i|
    Thread.new do
      Puma.set_thread_name "plgn bg #{i}"
      b.call
    end
  end
end