From 66e53feb4ded6b339877b15973c4984d2e4a07d6 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Wed, 5 Feb 2020 02:51:37 -0800 Subject: [PATCH] Update workarounds (drop update now stable, add F31 libdnf fix) Signed-off-by: Adam Williamson --- lib/utils.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/utils.pm b/lib/utils.pm index 7449c91d..ba91293e 100644 --- a/lib/utils.pm +++ b/lib/utils.pm @@ -513,9 +513,9 @@ sub _repo_setup_updates { # a hash of releases and update IDs. if no workarounds are needed # for any release, the hash can be empty and this will do nothing my %workarounds = ( - # cockpit 210 so we get the fixed main screen - "30" => ["FEDORA-2020-8ff69018de"], - "31" => [] + "30" => [], + # libdnf fix for #1795004 + "31" => ["FEDORA-2020-980b80f9d9"] ); # then we'll download each update for our release: my $advisories = $workarounds{$version};