Code Review
/
csit.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
cf64b95
)
Fix args order in setup_node call
68/19868/1
author
juraj.linkes
<
[email protected]
>
Wed, 29 May 2019 09:02:42 +0000
(11:02 +0200)
committer
juraj.linkes
<
[email protected]
>
Wed, 29 May 2019 09:02:42 +0000
(11:02 +0200)
Change-Id: I484cda8c8410e2f38d68da82761b1154dda26b1c
Signed-off-by: juraj.linkes <
[email protected]
>
resources/libraries/python/SetupFramework.py
patch
|
blob
|
history
diff --git
a/resources/libraries/python/SetupFramework.py
b/resources/libraries/python/SetupFramework.py
index
c9207d9
..
9aff152
100644
(file)
--- 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)