summaryrefslogtreecommitdiff
path: root/Master/tlpkg/TeXLive/TLConfig.pm
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2019-09-17 21:12:27 +0000
committerKarl Berry <karl@freefriends.org>2019-09-17 21:12:27 +0000
commit05b3b3799c28c6547593f53bfcfbb98a11bfc87d (patch)
treed65f9eac94437bfb93a20395fa06d471412b1f62 /Master/tlpkg/TeXLive/TLConfig.pm
parent68d7784f18db56a9cae1530fddf2c191e5e3402f (diff)
(FallbackDownloaderArgs): reduce from 10 retries
to 4 for both curl and wget; 10 seems like many too many. git-svn-id: svn://tug.org/texlive/trunk@52112 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/TeXLive/TLConfig.pm')
-rw-r--r--Master/tlpkg/TeXLive/TLConfig.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/Master/tlpkg/TeXLive/TLConfig.pm b/Master/tlpkg/TeXLive/TLConfig.pm
index 10bca165473..596302daa37 100644
--- a/Master/tlpkg/TeXLive/TLConfig.pm
+++ b/Master/tlpkg/TeXLive/TLConfig.pm
@@ -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 @@ if ($^O =~ /^MSWin/i) {
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