Subject: | Replicated doesn't support accessor connect_info. |
DBIx::Class::Storage::DBI has this, which returns connect info if not passed an argument.
sub connect_info {
my ($self, $info) = @_;
return $self->_connect_info if !$info;
It's not clear that is documented behavior, but it does act as an accessor.
But DBIx::Class::Storage::DBI::Replicated wraps connect_info and assumes that connect info is
always passed in (and resets connect info if called to read connect_info).
The behavior should be the same with and without replication enabled (regardless of which
usage is correct).
Thanks,
Thanks,