diff options
author | Yang Yu <Gabriel.yuyang@huawei.com> | 2018-01-03 10:09:16 +0800 |
---|---|---|
committer | Yu Yang (Gabriel) <Gabriel.yuyang@huawei.com> | 2018-01-05 07:38:51 +0000 |
commit | dfffb38551329a52d4c650c30fa88d6c2293ba54 (patch) | |
tree | 5b7ffcd722ed8040322193e6a290b7e48e089fa8 /utils/infra_setup | |
parent | cbd8645b9d529ce26535f0bb9553892c3fce4dc0 (diff) |
bug-fix: wrong line to modify for getting results
In Danube, should modify no.12 line of yardstick config file to
let yardstick record result in file instead of reporting to
MongoDB. After Danube, it should be no.13 line of that file.
Also return to Danube:3.1 and will fix the line issue
for VNF scaling test in another ticket
Change-Id: I309e9c609967efdda8eaaf289d788ccf1693308e
Signed-off-by: Yang Yu <Gabriel.yuyang@huawei.com>
Diffstat (limited to 'utils/infra_setup')
-rw-r--r-- | utils/infra_setup/runner/docker_env.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/infra_setup/runner/docker_env.py b/utils/infra_setup/runner/docker_env.py index 438d3d19..54478ffc 100644 --- a/utils/infra_setup/runner/docker_env.py +++ b/utils/infra_setup/runner/docker_env.py @@ -45,7 +45,7 @@ def env_yardstick(docker_name): volume = get_self_volume() yardstick_tag = os.getenv("Yardstick_TAG") if yardstick_tag is None: - yardstick_tag = "latest" + yardstick_tag = "danube.3.1" env_docker = client.containers.run(image="opnfv/yardstick:%s" % yardstick_tag, privileged=True, |