Fix args order in setup_node call 68/19868/1
authorjuraj.linkes <juraj.linkes@pantheon.tech>
Wed, 29 May 2019 09:02:42 +0000 (11:02 +0200)
committerjuraj.linkes <juraj.linkes@pantheon.tech>
Wed, 29 May 2019 09:02:42 +0000 (11:02 +0200)
Change-Id: I484cda8c8410e2f38d68da82761b1154dda26b1c
Signed-off-by: juraj.linkes <juraj.linkes@pantheon.tech>
resources/libraries/python/SetupFramework.py

index c9207d9..9aff152 100644 (file)
@@ -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)