|
As I mentioned before, you need to make sure your threads are being cleaned up at some point:
$thread[$identifier]->join();
delete($thread[$identifier]);
Also, you may need to do something similar with $AnsibleThread:
$AnsibleThread->join();
undef($AnsibleThread);
|