Skip Menu |

This queue is for tickets about the DBM-Deep CPAN distribution.

Report information
The Basics
Id: 34819
Status: resolved
Priority: 0/
Queue: DBM-Deep

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

Bug Information
Severity: Important
Broken in:
  • 1.0004
  • 1.0005
Fixed in: (no value)



Subject: fail to update existent object with the same value
"DBM::Deep: Cannot store something that is tied" error occurs while trying to update object twice. Reproduction scenario: [esobchenko@jail2 ~/dev]$ cat test.pl #!/usr/bin/perl -w use strict; use warnings; use DBM::Deep; my $db = DBM::Deep->new(file => "foo.db", locking => 1, autoflush => 1); my $bar = bless {}, 'Foo'; $db->{foo} = $bar; $db->{foo} = $bar; # here is the problem [esobchenko@jail2 ~/dev]$ perl test.pl DBM::Deep: Cannot store something that is tied. at test.pl line 13
This has been resolved in 1.0010