diff options
author | Rex Lee <limingjiang@huawei.com> | 2017-01-10 08:54:16 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-01-10 08:54:16 +0000 |
commit | ceebb672c85c5dbce6df17f0c263375d17adcc05 (patch) | |
tree | 807b3fbdcef0025eb56d2c8b093e7f7d24ed3a9a /api/utils/common.py | |
parent | 45db0fdabb4585b96756a390650181a3c46facf7 (diff) | |
parent | 254414758828a12a353e0670704faa5bcb792cae (diff) |
Merge "Record test case names when run a task using API"
Diffstat (limited to 'api/utils/common.py')
-rw-r--r-- | api/utils/common.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/api/utils/common.py b/api/utils/common.py index e3e64a72b..6971c6dfe 100644 --- a/api/utils/common.py +++ b/api/utils/common.py @@ -40,8 +40,8 @@ def get_command_list(command_list, opts, args): return command_list -def exec_command_task(command_list, task_id): # pragma: no cover - daemonthread = DaemonThread(YardstickCLI().api, (command_list, task_id)) +def exec_command_task(command_list, task_dict): # pragma: no cover + daemonthread = DaemonThread(YardstickCLI().api, (command_list, task_dict)) daemonthread.start() |