Subject: | when user is not created correctly, an issue in cleanup |
This issue was reported a year ago, on a github repository which I don't think is there any more, so I'm re-posting it.
We are seeing an issue in cleanup when there's a DBIC schema issue with our underlying user store.
254c254,256
< if (my $code = $self->_user->can($method)) {
---
Show quoted text
> if (not $self->_user) {
> undef;
> } elsif (my $code = $self->_user->can($method)) {