diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-09-03 09:22:25 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-09-03 09:22:25 +0000 |
commit | 3e997f8f64500be9f345902af75fd4434fcff00b (patch) | |
tree | 2c1fb954ddfb5ab42ba8146154236858e7bd6a0f /urpm/download.pm | |
parent | aad2c29364f5fe14395533bcaa301ccd3a538bc6 (diff) | |
download | urpmi-3e997f8f64500be9f345902af75fd4434fcff00b.tar urpmi-3e997f8f64500be9f345902af75fd4434fcff00b.tar.gz urpmi-3e997f8f64500be9f345902af75fd4434fcff00b.tar.bz2 urpmi-3e997f8f64500be9f345902af75fd4434fcff00b.tar.xz urpmi-3e997f8f64500be9f345902af75fd4434fcff00b.zip |
- really call aria2 with --max-tries=1
(it helps a lot when trying to download some files (eg: reconfig.urpmi))
Diffstat (limited to 'urpm/download.pm')
-rw-r--r-- | urpm/download.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/urpm/download.pm b/urpm/download.pm index e6c60e07..244cc45e 100644 --- a/urpm/download.pm +++ b/urpm/download.pm @@ -623,7 +623,7 @@ sub sync_aria2 { "--auto-file-renaming=false", "--follow-metalink=mem", '--metalink-enable-unique-protocol=false', # so that it can try both ftp and http access on the same server. aria2 will only do this on first calls - '--max-tries=1', + '--max-tries=1', # nb: not using $options->{retry} '--lowest-speed-limit=20K', "--timeout", 3, # $CONNECT_TIMEOUT, '-C3', # maximum number of servers to use for one download '--uri-selector=adaptive', "--server-stat-if=$stat_file", "--server-stat-of=$stat_file", @@ -631,7 +631,6 @@ sub sync_aria2 { ($options->{'limit-rate'} ? "--max-download-limit=" . $options->{'limit-rate'} : ()), ($options->{resume} ? "--continue" : "--allow-overwrite=true"), ($options->{proxy} ? set_proxy({ type => "aria2", proxy => $options->{proxy} }) : ()), - ($options->{retry} ? "--max-tries=$options->{retry}" : "--max-tries=3"), (defined $options->{'aria2-options'} ? split /\s+/, $options->{'aria2-options'} : ()), @files); |