Code Review
/
yardstick.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
708550d
)
Bugfix: task_id parameter from API can not pass to yardstick core
63/26863/1
author
chenjiankun
<chenjiankun1@huawei.com>
Wed, 11 Jan 2017 10:42:32 +0000
(10:42 +0000)
committer
chenjiankun
<chenjiankun1@huawei.com>
Wed, 11 Jan 2017 10:42:32 +0000
(10:42 +0000)
JIRA: YARDSTICK-531
Now in API entry the task_id parameter will not pass to yardstick core.
I fix it by pass task_id to yardstick.benchmark.core.task.start() method.
Change-Id: I66439660ff116d83104e5ba4f040106ca73142e6
Signed-off-by: chenjiankun <chenjiankun1@huawei.com>
yardstick/cmd/commands/task.py
patch
|
blob
|
history
diff --git
a/yardstick/cmd/commands/task.py
b/yardstick/cmd/commands/task.py
index
bd018bc
..
b7f74c2
100644
(file)
--- a/
yardstick/cmd/commands/task.py
+++ b/
yardstick/cmd/commands/task.py
@@
-40,4
+40,4
@@
class TaskCommands(object):
action="store_true")
def do_start(self, args, **kwargs):
param = change_osloobj_to_paras(args)
- Task().start(param)
+ Task().start(param
, **kwargs
)