模块 Bundler::ConnectionPool::ForkTracker

公共实例方法

_fork() 点击切换源代码
调用父类方法
# 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