On Mon, 23 Feb 2009, Clinton Gormley wrote:
> to:
>    eval {load_application(); 1} || print STDERR $@;
>    1;
>
> then I see the proper error message, but apache starts
> anyway.
>
> Is there any way I can:
>  - cause the error to be reported properly
>  - force apache not to start

 eval {load_application(); 1} || do { warn $@; die };

??

Mark

Reply via email to