I'm using WWW::Nechanize to read a particular webpage in a loop that runs every few seconds. Occasionally, the 'GET' times out and the script stops running. How can I recover from one such timeout such that it continues the loop and tries the 'GET' the next time around?
|
feedback
|
|
Use
The | |||
|
feedback
|
|
One option would be to implement a method to handle timeout errors and hook it into the mech object at construction time as the You could even ignore errors by setting a null error handler, for example:
but I wouldn't recommend that - you'll just get weird problems later. | |||
|
feedback
|