alter timout values (15 -> 30)

This commit is contained in:
Jon@svn.torproject.org 2009-11-28 18:20:27 +00:00
parent 9fff3c0a51
commit 55e272336f

View File

@ -18,12 +18,13 @@ use Date::Format;
#CHANGELOG
#20091003 Code changes to elimiate the need for a trailing slash in addresses for script runtime
#20091004 Code changes to increase out of date tolerance to 48 hours
#20091028 Code changes to increase timout to 30 seconds (attempting to resolve "unknown" status'
#
print "Creating LWP agent ($LWP::VERSION)...\n";
my $lua = LWP::UserAgent->new(
keep_alive => 1,
timeout => 15,
timeout => 30,
agent => "Tor MirrorCheck Agent"
);