read timeout at /usr/lib/perl5/site_perl/5.8.8/LWP/Protocol/http.pm line 426. at /usr/lib/perl5/site_perl/5.8.8/LWP/UserAgent.pm line 844

Anyone knows?

link|improve this question

46% accept rate
feedback

2 Answers

LWP does continue on with the next statement on timeout. Specifically, it returns an HTTP::Response object with a 5xx error code.

>perl -MLWP -e"my $ua = LWP::UserAgent->new(timeout => 1); print $ua->get('http://...something really slow...')->as_string;"
500 read timeout
Content-Type: text/plain
Client-Date: Thu, 30 Jun 2011 06:35:11 GMT
Client-Warning: Internal response

read timeout at .../lib/LWP/Protocol/http.pm line 433.
link|improve this answer
feedback

Just continue what?

If you want to disable timing out, just call ->timeout(0) on your user agent object.

To prevent the exception from ending your process, wrap the code in an eval {} block; see http://perldoc.perl.org/functions/eval.html.

But I'm curious to know how you are getting the exception you show; using LWP in the normal way will already catch that exception and return an error response, allowing your code to continue. Show your code if you want help.

link|improve this answer
continue to run the next statement instread of just terminating. – new_perl Jun 30 '11 at 3:34
Will LWP possibly hang there forever if set timeout to 0? – new_perl Jun 30 '11 at 3:45
no, 0 means no timeout. – ysth Jun 30 '11 at 3:50
what exactly does no timeout mean? As it can wait endlessly and thus hang forever... – new_perl Jun 30 '11 at 3:53
yes, it can hang forever. – ysth Jun 30 '11 at 4:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.