Skip Menu |

This queue is for tickets about the Module-Release CPAN distribution.

Report information
The Basics
Id: 16463
Status: resolved
Priority: 0/
Queue: Module-Release

People
Owner: Nobody in particular
Requestors: ian [...] cpan.org
Cc:
AdminCc:

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



Subject: lwpcookies leftovers
`release' loves to leave around little .lwpcookies files, which interferes with Module::Signature. I am currently subclassing Module::Release's constuctor to make the cookies object use a file which is deleted when the program exists: sub new { my ( $class, @args ) = @_; my $self = $class->SUPER::new(@args); my $fh = File::Temp->new( UNLINK => 1 ); $self->{cookies} = HTTP::Cookies->new( file => $fh->filename, hide_cookie2 => 1, autosave => 1 ); $self; } Is there any reason that the cookie file needs needs to exist after release is finished? -- Ian Langworth
Date: Wed, 14 Dec 2005 17:48:41 -0500
From: brian d foy <brian.d.foy [...] gmail.com>
To: bug-Module-Release [...] rt.cpan.org
Subject: Re: [cpan #16463] lwpcookies leftovers
RT-Send-Cc:
On 12/13/05, via RT <bug-Module-Release@rt.cpan.org> wrote: Show quoted text
> Is there any reason that the cookie file needs needs to exist after > release is finished?
Not that I can remember. In the next update I'll change that (and there are a lot of updates I need to make :( ) -- brian d foy <brian.d.foy@gmail.com> http://www.pair.com/~comdog/
Applied the patch. It's in 1.14. Thanks,