Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the DBIx-Class-QueryLog CPAN distribution.

Report information
The Basics
Id: 44846
Status: resolved
Priority: 0/
Queue: DBIx-Class-QueryLog

People
Owner: Nobody in particular
Requestors: icestar [...] inbox.ru
Cc:
AdminCc:

Bug Information
Severity: Critical
Broken in: 1.1.4
Fixed in: (no value)



Subject: reset method leads to failure with DBIx::Class::Exception
When you call $query_log->reset and after that produce any query with DBIx it leads to failure with DBIx::Class::Exception exception. The reason is in the error in reset method: to log array you should call $self->log([]) instead of $self->log(undef). sub reset { my $self = shift; #$self->log(undef); $self->log([]); }
Fixed in the just uploaded 1.1.5. Thanks!