1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2024-10-05 18:31:12 +01:00

fw/execution: Fix missing parameter

This commit is contained in:
Marc Bonnici 2020-06-23 15:19:38 +01:00
parent b8301640f7
commit 0c2613c608

View File

@ -404,7 +404,7 @@ class Executor(object):
attempts = context.cm.run_config.max_retries attempts = context.cm.run_config.max_retries
while attempts: while attempts:
try: try:
self.target_manager.reboot() self.target_manager.reboot(context)
except TargetError as e: except TargetError as e:
if attempts: if attempts:
attempts -= 1 attempts -= 1