Skip Menu |

This queue is for tickets about the MooseX-WithCache CPAN distribution.

Report information
The Basics
Id: 78199
Status: new
Priority: 0/
Queue: MooseX-WithCache

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

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



Subject: MooseX::WithCache::KeyGenerator::DumpChecksum - faulty MD5 from data structures
Hi, There's a mistake in MooseX::WithCache::KeyGenerator::DumpChecksum - the instructions to SortKeys etc should be on Data::Dumper, not Digest::MD5. i.e. sub generate { my ($self, $key) = @_; local $Data::Dumper::Indent = 0; local $Data::Dumper::Terse = 1; local $Data::Dumper::Sortkeys = 1; return Digest::MD5::md5_hex( Data::Dumper::Dumper($key) ); } thanks, Michael