From 6c2ecc6ca52a4f07af1ab4fb8ec6164cfe826db9 Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Wed, 30 May 2018 22:30:04 -0500 Subject: [PATCH] autotests: Bump iwd startup timeout iwd now performs a lot of crypto checks at startup, so the timeout was sometimes being triggered. --- autotests/util/iwd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autotests/util/iwd.py b/autotests/util/iwd.py index 23e522dd..ece4c084 100755 --- a/autotests/util/iwd.py +++ b/autotests/util/iwd.py @@ -681,7 +681,7 @@ class IWD(AsyncOpAbstract): iwd_proc.terminate() raise TimeoutError('IWD has failed to start') tries += 1 - time.sleep(0.05) + time.sleep(0.1) self._devices = DeviceList(self, self._object_manager.GetManagedObjects())