From e2fde7809cbc89c7ae4bad53aa064a3271c7cf51 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Tue, 11 Jun 2024 00:56:29 -0700 Subject: [PATCH] Bump advisory_check timeout even more for really huge "updates" ...well, in this case, the Python side tag, because side tags that inherit have just *all* the packages in them. Signed-off-by: Adam Williamson --- lib/utils.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/utils.pm b/lib/utils.pm index 1e328bdc..1302a6e7 100644 --- a/lib/utils.pm +++ b/lib/utils.pm @@ -1256,6 +1256,7 @@ sub advisory_check_nonmatching_packages { my $pkgs = script_output "wc -l /mnt/updatepkgs.txt"; $timeout *= 2 if ($pkgs > 100); $timeout *= 2 if ($pkgs > 400); + $timeout *= 2 if ($pkgs > 1600); my $wrapper = $args{wrapper}; $rpmcmd = "$wrapper rpm" if ($wrapper); $timeout *= 2 if ($wrapper);