Author: hdu Date: Fri Mar 23 09:16:26 2012 New Revision: 1304242 URL: http://svn.apache.org/viewvc?rev=1304242&view=rev Log: extend timeout for downloading extension blobs
http://ci.apache.org/builders/openoffice-linux64-nightly/builds/159/steps/compile_3/logs/stdio shows that the old timeout of 10 seconds is too short because even successful downloads of take multiple seconds Modified: incubator/ooo/trunk/main/solenv/bin/modules/ExtensionsLst.pm Modified: incubator/ooo/trunk/main/solenv/bin/modules/ExtensionsLst.pm URL: http://svn.apache.org/viewvc/incubator/ooo/trunk/main/solenv/bin/modules/ExtensionsLst.pm?rev=1304242&r1=1304241&r2=1304242&view=diff ============================================================================== --- incubator/ooo/trunk/main/solenv/bin/modules/ExtensionsLst.pm (original) +++ incubator/ooo/trunk/main/solenv/bin/modules/ExtensionsLst.pm Fri Mar 23 09:16:26 2012 @@ -454,7 +454,7 @@ sub Download (@) # Download the extension. my $agent = LWP::UserAgent->new(); - $agent->timeout(10); + $agent->timeout(120); $agent->show_progress(1); my $last_was_redirect = 0; $agent->add_handler('response_redirect'
