module Bundler::ConnectionPool::ForkTracker

Public Instance Methods

_fork() click to toggle source
Calls superclass method
# File bundler/vendor/connection_pool/lib/connection_pool.rb, line 71
def _fork
  pid = super
  if pid == 0
    Bundler::ConnectionPool.after_fork
  end
  pid
end