Subject: | Bug in Catalyst::Continuation->execute |
Up until version 5.7012 of Catalyst
$c->_stats_start_execute returned a hashref
Catalyst 5.7012 and greater return a simple string and there's no way I
can see to make a comment...
Subject: | continuation.patch |
--- Continuation.pm.org 2008-09-09 15:09:13.000000000 +1000
+++ Continuation.pm 2008-09-09 15:30:11.000000000 +1000
@@ -200,7 +200,7 @@
$localized->{stack} = [ @{ $c->stack }, $caller ];
my $stats_info = $c->_stats_start_execute( $caller );
- if ( my $node = $stats_info->{node} ) {
+ if ( $c->version < 5.7012 and my $node = $stats_info->{node} ) {
$node->getNodeValue->{comment} = " (continuation)";
}