diff options
author | Abhijit Sinha <abhijit.sinha@intel.com> | 2018-09-21 16:48:02 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-09-21 16:48:02 +0000 |
commit | 497292013ef0d7e1e014d76803d4f284618b4986 (patch) | |
tree | 8662ed13a84618ddc1f1d8724cb1e53482d989db | |
parent | 115a4df2aeeec7a50cc1348a66b9c5e2cc3b442c (diff) | |
parent | 4411a184ebc813223f98f73805f5a3b16ebda041 (diff) |
Merge "SA: Fix private key file name generation issue"
-rw-r--r-- | yardstick/benchmark/contexts/standalone/model.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yardstick/benchmark/contexts/standalone/model.py b/yardstick/benchmark/contexts/standalone/model.py index fa78fc1eb..1004c62d1 100644 --- a/yardstick/benchmark/contexts/standalone/model.py +++ b/yardstick/benchmark/contexts/standalone/model.py @@ -564,7 +564,7 @@ class StandaloneContextHelper(object): key_filename = ''.join( [constants.YARDSTICK_ROOT_PATH, 'yardstick/resources/files/yardstick_key-', - id_name]) + id_name, '-', vm_name]) ssh.SSH.gen_keys(key_filename) node['key_filename'] = key_filename # Update image with public key |