Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Parallel-ForkManager CPAN distribution.

Report information
The Basics
Id: 83747
Status: resolved
Priority: 0/
Queue: Parallel-ForkManager

People
Owner: Nobody in particular
Requestors: michaelgang [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 1.02
Fixed in: (no value)



Subject: tempdir variable not used in new
as we can see in new the tempdir variable is not used. sub new { my ($c,$processes, $tempdir)=@_; my $h={ max_proc => $processes, processes => {}, in_child => 0, parent_pid => $$, }; # determine temporary directory for storing data structures # add it to Parallel::ForkManager object so children can use it # We don't let it clean up so it won't do it in the child process # but we have our own DESTROY to do that. $h->{tempdir} = File::Temp::tempdir(CLEANUP => 0); return bless($h,ref($c)||$c); };
could you please write a test that fails with 1.02 and should pass once it is fixed. (and then you can try it wirh 1.93 to see if that's what you meant)
there is no test, but the issue was already fixed in 1.03