Skip to content

Commit

Permalink
reposync: Use fail_fast=False when downloading packages (RhBug:2009894)
Browse files Browse the repository at this point in the history
= changelog =
msg:           Reposync does not stop downloading packages on the first error
type:          bugfix
resolves:      https://bugzilla.redhat.com/show_bug.cgi?id=2009894
  • Loading branch information
m-blaha authored and kontura committed Oct 25, 2021
1 parent f8c2662 commit bdfb8ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dnf-plugins-core.spec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%{?!dnf_lowest_compatible: %global dnf_lowest_compatible 4.2.22}
%{?!dnf_lowest_compatible: %global dnf_lowest_compatible 4.9.2}
%global dnf_plugins_extra 2.0.0
%global hawkey_version 0.46.1
%global yum_utils_subpackage_name dnf-utils
Expand Down
2 changes: 1 addition & 1 deletion plugins/reposync.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ def download_packages(self, pkglist):
progress, 0)
payloads = [RPMPayloadLocation(pkg, progress, self.pkg_download_path(pkg))
for pkg in pkglist]
base._download_remote_payloads(payloads, drpm, progress, None)
base._download_remote_payloads(payloads, drpm, progress, None, False)

def print_urls(self, pkglist):
for pkg in pkglist:
Expand Down

0 comments on commit bdfb8ed

Please sign in to comment.