Subject: | Cut off error string in Rose::DB::Object::MakeMethods::Generic find method |
When doing a make_manager_methods-derived 'find_relationship' against a
one-to-many relationship, the call dies with the error 'Could not '.
This comes from Rose::DB::Object::MakeMethods::Generic:
3090 $self->error("Could not ", ($is_iterator ? 'get iterator
for' : 'find '),
3091 " $ft_class objects - " . $ft_manager->error);
It seems like whatever is parsing the error arguments is not expecting
the list of values. Perhaps this is a bad behavior of a subclass but I'm
not sure how to tell.
JT