in reply to parallel HTTP::Request
if ($pid = fork()) { next; }
needs to be
if ($pid = fork()) { last; }
By doing next you just skip an iteration, you don't actually leave the loop.
- Ant - Some of my best work - (1 2 3)