module ConnectionPool::ForkTracker

def _fork

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