Skip Menu |

This queue is for tickets about the Cache CPAN distribution.

Report information
The Basics
Id: 6609
Status: resolved
Priority: 0/
Queue: Cache

People
Owner: Nobody in particular
Requestors: julian [...] avbrief.com
Cc:
AdminCc:

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



Subject: Bug in Cache freeze wrapper
Unless I'm missing something subtle, the freeze wrapper in Cache is broken: sub freeze { my Cache $self = shift; my $key = shift; return $self->entry($key)->freeze(); } should be sub freeze { my Cache $self = shift; my $key = shift; return $self->entry($key)->freeze(@_); } (it's correct in the set wrapper) Workaround is easy using Cache::Entry explicitly but I thought you'd like to know. Regards Julian
This is already fixed in CVS - I'll try and organise a new release this week. Regards, Chris
Was fixed in release 2.02