X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst%2FActionChain.pm;h=ed2fb51a8cedc1689724b8472eb67d6cc103a8a0;hp=b54d553c0ba0fd2dd84d7a26e9f76f21a97bcbd5;hb=6e8520be0c895f96e8e28f724ba73ba70ea4fac6;hpb=41e7bd481acdafb23e08381f98c9e3732950bdc0 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 ); }