module ActiveSupport::ForkTracker::ModernCoreExt

def _fork

def _fork
  pid = super
  if pid == 0
    ForkTracker.check!
  end
  pid
end