aboutsummaryrefslogtreecommitdiffstats
path: root/yardstick/cmd
diff options
context:
space:
mode:
authorJing Lu <lvjing5@huawei.com>2017-01-20 01:08:39 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-01-20 01:08:39 +0000
commit8f91b0a5c1f47953dd1a14541b71505dbf8f869a (patch)
treed4486a2d3d4119d18e6173495dec2246247d0c7d /yardstick/cmd
parentff1b12cbd92e39503e37833b4a94f30574c3ccbb (diff)
parentcf7459ddc6d4e978b310bde8578bdaf47e7f1cfe (diff)
Merge "Bugfix: task_id parameter from API can not pass to yardstick core"
Diffstat (limited to 'yardstick/cmd')
-rw-r--r--yardstick/cmd/commands/task.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yardstick/cmd/commands/task.py b/yardstick/cmd/commands/task.py
index 1c5db1f46..d7c0a01fb 100644
--- a/yardstick/cmd/commands/task.py
+++ b/yardstick/cmd/commands/task.py
@@ -42,4 +42,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)