From 454b5a7112cab736e13a6b9e48746fa2a2e064a1 Mon Sep 17 00:00:00 2001 From: Alex Schultz Date: Mon, 7 Jun 2021 09:19:18 -0600 Subject: [PATCH] Fix yum_update_container args 6a116845a4be0319e27dd2910ca49f4627f227ef dropped the set notation however this function is called using a multiprocess map which passes in multiple params. We need to fix the function definition to work correctly. Related-Bug: LP#1931134 --- container-check | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/container-check b/container-check index 9720e8b..961e9fe 100755 --- a/container-check +++ b/container-check @@ -83,7 +83,8 @@ def populate_container_rpms_list(container): return (subproc.returncode, container, rpms) -def yum_update_container(container, name, packages): +def yum_update_container(args): + (container, name, packages) = args container_name = 'yum-update-%s' % name