X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FActionChain.pm;h=ed2fb51a8cedc1689724b8472eb67d6cc103a8a0;hb=1b526dcc8437ccd8c55e8e313f3fe247b6741969;hp=b54d553c0ba0fd2dd84d7a26e9f76f21a97bcbd5;hpb=569b665ec6e28d629c114a5fe34894ad71e8e588;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/ActionChain.pm b/lib/Catalyst/ActionChain.pm index b54d553..ed2fb51 100644 --- a/lib/Catalyst/ActionChain.pm +++ b/lib/Catalyst/ActionChain.pm @@ -36,7 +36,7 @@ sub dispatch { $action->dispatch( $c ); # break the chain if exception occurs in the middle of chain - return if (@{$c->error} && $c->config->{detach_on_die}); + return if (@{$c->error} && $c->config->{abort_chain_on_error_fix}); } $last->dispatch( $c ); }