From 12dedd459233f367cecfa40543c4de698cb6689e Mon Sep 17 00:00:00 2001 From: Douglas Raillard Date: Thu, 9 Mar 2023 20:13:59 +0000 Subject: [PATCH] lisa.target: Pass max_async to devlib Target FIX Pass max_async to devlib's Target.connect() method which is where it is actually used, rather than just to the constructor. --- lisa/target.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisa/target.py b/lisa/target.py index 114ec3793..7b75d7fda 100644 --- a/lisa/target.py +++ b/lisa/target.py @@ -828,7 +828,7 @@ class Target(Loggable, HideExekallID, ExekallTaggable, Configurable): target = devlib_target_cls(**devlib_kwargs) - target.connect(check_boot_completed=wait_boot, timeout=wait_boot_timeout) + target.connect(check_boot_completed=wait_boot, timeout=wait_boot_timeout, max_async=max_async) logger.debug(f'Target info: {dict(abi=target.abi, cpuinfo=target.cpuinfo, workdir=target.working_directory)}') target.setup() logger.info(f"Connected to target {(name or '')}") -- GitLab