iRSSの日記

はてなダイアリーiRSSの日記の続き

Software caused connection abort at のヒント

mod_perlが関係しているのかなあ。
すっきりしない

著者:?Cosimo Streppone
日付:?2009-12-13?01:46?+900
To:?Mod_perl users
題目:?Re: [error] Software caused connection abort at
In data 12 dicembre 2009 alle ore 05:38:06, discobeta
<discobeta@???> ha scritto:

> Dear all,
>
> Recently i've been noticing an error on the apache error log that
> states:[error] Software caused connection abort at [script path] line
> [line
> number].

I've seen that happen when I used something like:

sub handler {
my ($r) = @_;

# ...
my $response_body = whatever();

$r->content_type('text/html');
$r->print($response_body);

}