Subject: | Tries to access storage() on model() |
Hi,
I'm using this profiler on my dev system. It chrashed recently and I had to reinstall many things, so this issue *may* be caused through something I'm missing...
On line 43 in Catalyst/Plugin/DBIC/Schema/Profiler.pm you access storage() directly on model() which causes an error with Catalyst version 5.80016 and DBIx::Class version 0.08115. If you change the lines 43 and 44 into:
$c->model($model_name)->schema->storage->...
it works again.
Regards,
matt
I'm using this profiler on my dev system. It chrashed recently and I had to reinstall many things, so this issue *may* be caused through something I'm missing...
On line 43 in Catalyst/Plugin/DBIC/Schema/Profiler.pm you access storage() directly on model() which causes an error with Catalyst version 5.80016 and DBIx::Class version 0.08115. If you change the lines 43 and 44 into:
$c->model($model_name)->schema->storage->...
it works again.
Regards,
matt