3
0
mirror of https://git.kernel.org/pub/scm/network/wireless/iwd.git synced 2024-10-04 02:18:49 +02:00

autotests: Bump iwd startup timeout

iwd now performs a lot of crypto checks at startup, so the timeout was
sometimes being triggered.
This commit is contained in:
Denis Kenzior 2018-05-30 22:30:04 -05:00
parent 0c701d974a
commit 6c2ecc6ca5

View File

@ -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())