32 lines
1.2 KiB
Diff
32 lines
1.2 KiB
Diff
From bdfb8ed33b54683057364df729d45e782d19e708 Mon Sep 17 00:00:00 2001
|
|
From: Marek Blaha <mblaha@redhat.com>
|
|
Date: Wed, 6 Oct 2021 13:40:55 +0200
|
|
Subject: [PATCH] reposync: Use fail_fast=False when downloading packages
|
|
(RhBug:2009894)
|
|
|
|
= changelog =
|
|
msg: Reposync does not stop downloading packages on the first error
|
|
type: bugfix
|
|
resolves: https://bugzilla.redhat.com/show_bug.cgi?id=2009894
|
|
|
|
Conflict:NA
|
|
Reference:https://github.com/rpm-software-management/dnf-plugins-core/commit/bdfb8ed33b54683057364df729d45e782d19e708
|
|
---
|
|
dnf-plugins-core.spec | 2 +-
|
|
plugins/reposync.py | 2 +-
|
|
2 files changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/plugins/reposync.py b/plugins/reposync.py
|
|
index 66c76a77..0ff936f8 100644
|
|
--- a/plugins/reposync.py
|
|
+++ b/plugins/reposync.py
|
|
@@ -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:
|