diff options
author | JingLu5 <lvjing5@huawei.com> | 2017-07-26 01:50:49 +0000 |
---|---|---|
committer | Jing Lu <lvjing5@huawei.com> | 2017-07-26 01:58:44 +0000 |
commit | 12ce596d02be27abf4ab2e9aebb873002c6cd6a9 (patch) | |
tree | 4ec467e4d5b2d2e9b40e476a2a99cffd5fadd965 | |
parent | e2601afe686e29e3c6109637e43208b5c6132e74 (diff) |
Bugfix: plugin remove command use "JUMP_HOST_IP" if ip is set to local
JIRA: YARDSTICK-762
Change-Id: Id4a94ef8bbe578944e3664e5e7c24fdf7478805b
Signed-off-by: JingLu5 <lvjing5@huawei.com>
-rw-r--r-- | yardstick/benchmark/core/plugin.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yardstick/benchmark/core/plugin.py b/yardstick/benchmark/core/plugin.py index 6c06767d5..c8d0865d1 100644 --- a/yardstick/benchmark/core/plugin.py +++ b/yardstick/benchmark/core/plugin.py @@ -107,8 +107,8 @@ class Plugin(object): if deployment_ip == "local": self.client = ssh.SSH.from_node(deployment, overrides={ - # host can't be None, fail if no INSTALLER_IP - 'ip': os.environ["INSTALLER_IP"], + # host can't be None, fail if no JUMP_HOST_IP + 'ip': os.environ["JUMP_HOST_IP"], }) else: self.client = ssh.SSH.from_node(deployment) |