Module: ConnectionPool::ForkTracker

Included in:
ConnectionPool
Defined in:
lib/connection_pool/fork.rb

Instance Method Summary collapse

Instance Method Details

#_forkObject



22
23
24
25
26
27
28
# File 'lib/connection_pool/fork.rb', line 22

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