From 245ea1de4f111c159a50bc309f53db3f520453ed Mon Sep 17 00:00:00 2001 From: "juraj.linkes" Date: Wed, 29 May 2019 11:02:42 +0200 Subject: [PATCH] Fix args order in setup_node call Change-Id: I484cda8c8410e2f38d68da82761b1154dda26b1c Signed-off-by: juraj.linkes --- resources/libraries/python/SetupFramework.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/libraries/python/SetupFramework.py b/resources/libraries/python/SetupFramework.py index c9207d9658..9aff15278e 100644 --- a/resources/libraries/python/SetupFramework.py +++ b/resources/libraries/python/SetupFramework.py @@ -249,9 +249,9 @@ class SetupFramework(object): threads = [] for node in nodes.values(): - thread = threading.Thread(target=setup_node, args=(tarball, + thread = threading.Thread(target=setup_node, args=(node, + tarball, remote_tarball, - node, results)) thread.start() threads.append(thread) -- 2.16.6