Has something changed in Catalyst 5.9 with regards to prepare_body_chunk? I
had some dependent Plugin code that is no longer working.
None of the following method modifiers are triggered:
around 'prepare_body_chunk' => sub {
my ( $orig, $c, $chunk ) = @_;
print STDERR "AROUND prepare_body_chunk\n";
$c->$orig(@_);
};
before 'prepare_body_chunk' => sub {
my ($self) = @_;
print STDERR "BEFORE prepare_body_chunk\n";
};
after 'prepare_body_chunk' => sub {
my ($self) = @_;
print STDERR "AFTER prepare_body_chunk\n";
};
I am able to hook into other parts of the Catalyst lifecycle like
"prepare_body" and "dispatch". Am I overlooking something obvious here?
Any idea what could be wrong?
-Eric
_______________________________________________
List: [email protected]
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/[email protected]/
Dev site: http://dev.catalyst.perl.org/