texlive[52112] Master/tlpkg/TeXLive/TLConfig.pm:

commits+karl at tug.org commits+karl at tug.org
Tue Sep 17 23:12:27 CEST 2019


Revision: 52112
          http://tug.org/svn/texlive?view=revision&revision=52112
Author:   karl
Date:     2019-09-17 23:12:27 +0200 (Tue, 17 Sep 2019)
Log Message:
-----------
(FallbackDownloaderArgs): reduce from 10 retries
to 4 for both curl and wget; 10 seems like many too many.

Modified Paths:
--------------
    trunk/Master/tlpkg/TeXLive/TLConfig.pm

Modified: trunk/Master/tlpkg/TeXLive/TLConfig.pm
===================================================================
--- trunk/Master/tlpkg/TeXLive/TLConfig.pm	2019-09-17 21:11:19 UTC (rev 52111)
+++ trunk/Master/tlpkg/TeXLive/TLConfig.pm	2019-09-17 21:12:27 UTC (rev 52112)
@@ -1,6 +1,6 @@
 # $Id$
 # TeXLive::TLConfig.pm - module exporting configuration values
-# Copyright 2007-2018 Norbert Preining
+# Copyright 2007-2019 Norbert Preining
 # This file is licensed under the GNU General Public License version 2
 # or any later version.
 
@@ -114,10 +114,10 @@
 our @AcceptedFallbackDownloaders = qw/curl wget/;
 our %FallbackDownloaderProgram = ( 'wget' => 'wget', 'curl' => 'curl');
 our %FallbackDownloaderArgs = (
-  'curl' => ['--user-agent', 'texlive/curl', '--retry', '10', '--retry-delay', '5',
+  'curl' => ['--user-agent', 'texlive/curl', '--retry', '4', '--retry-delay', '5',
              '--fail', '--location',
              '--connect-timeout', "$NetworkTimeout", '--silent', '--output'],
-  'wget' => ['--user-agent=texlive/wget', '--tries=10',
+  'wget' => ['--user-agent=texlive/wget', '--tries=4',
              "--timeout=$NetworkTimeout", '-q', '-O'],
 );
 # the way we package things on the web



More information about the tex-live-commits mailing list