On Wed, 12 Apr 2000 [EMAIL PROTECTED] wrote:
> Hi All,
>
> Recently I installed Apache-1.3.12 with mod_perl-1.22. Standard
> installation. Everything seemed to work great.
>
> I'm using the directive
> PerlFixupHandler Apache::SIG
>
> because you have some 'alive' scripts that need to be killed if
> the user closes his browser.
>
> Well, everything seems to work fine, but in Apache error_log
> we get the message:
>
> [Mon Apr 10 22:27:01 2000] [error] at
> /usr/lib/perl5/site_perl/5.005/i386-linux
> /Apache/SIG.pm line 31.
>
> Line 31 is Apache::exit($s);
Apache::exit() calls die() underneath to halt script execution. it tie's
$@ so it appears empty to avoid such messages, somehow the magic was lost.
so the message in this case is nothing more than annoying.