in reply to Re: Parallel ForkManager problem: parent dies early before all the child finishes
in thread Parallel ForkManager problem: parent dies early before all the child finishes

No, it's the parent handle that you don't want to disconnect when the child process ends, and that's what the attribute does, it prevents disconnect upon destruction. Although I now notice in the docs an 'AutoInactiveDestroy' attribute, which looks more convenient.
  • Comment on Re^2: Parallel ForkManager problem: parent dies early before all the child finishes

Replies are listed 'Best First'.
Re^3: Parallel ForkManager problem: parent dies early before all the child finishes
by Mr. Muskrat (Canon) on Aug 22, 2011 at 17:56 UTC

    Even the DBI docs say that you probably want to set InactiveDestroy in the child (although it says so in the section for AutoInactiveDestroy.)

    Update: Okay, I see what I did there. LOL