From 6a53a18c78ac830ce4df04cd05775b00a49e3644 Mon Sep 17 00:00:00 2001 From: vboxsync Date: Wed, 10 May 2023 15:09:06 +0000 Subject: ValKit/vboxinstaller.py: Corrected DMG umount retrying from r148180 to not use reporter.error() till we give up. duh git-svn-id: https://www.virtualbox.org/svn/vbox/trunk@99729 cfe28804-0f27-0410-a406-dd0f0b0b656f --- src/VBox/ValidationKit/testdriver/vboxinstaller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/VBox/ValidationKit/testdriver/vboxinstaller.py b/src/VBox/ValidationKit/testdriver/vboxinstaller.py index 109c26d218b..1285813d721 100755 --- a/src/VBox/ValidationKit/testdriver/vboxinstaller.py +++ b/src/VBox/ValidationKit/testdriver/vboxinstaller.py @@ -663,7 +663,7 @@ class VBoxInstallerTestDriver(TestDriverBase): # In case it's busy for some reason or another, just retry after a little delay. for iTry in range(6): time.sleep(5); - reporter.error('Retry #%s unmount DMT at %s' % (iTry + 1, sMountPath,)); + reporter.log('Retry #%s unmount DMG at %s' % (iTry + 1, sMountPath,)); fRc = self._executeSync(['hdiutil', 'detach', sMountPath ]); if fRc: break; -- cgit v1.2.1