module Bundler::ConnectionPool::ForkTracker

def _fork

def _fork
  pid = super
  if pid == 0
    Bundler::ConnectionPool.after_fork
  end
  pid
end