From 45338ca9a66f154533bed3617c30f14f38bade57 Mon Sep 17 00:00:00 2001 From: lubaihua33 <56374758+lubaihua33@users.noreply.github.com> Date: Fri, 27 Oct 2023 10:25:19 +0800 Subject: [PATCH] Add wait_running_package_process in uninstall_package (#3024) * Add super method in add_azure_core_repo for Mariner * Add wait_running_package_process in uninstall_package --- lisa/operating_system.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lisa/operating_system.py b/lisa/operating_system.py index bfe4e9f891..845e443599 100644 --- a/lisa/operating_system.py +++ b/lisa/operating_system.py @@ -1008,6 +1008,7 @@ def _uninstall_packages( ) if not signed: command += " --allow-unauthenticated" + self.wait_running_package_process() uninstall_result = self._node.execute( command, shell=True, sudo=True, timeout=timeout )