aboutsummaryrefslogtreecommitdiffstats
path: root/yardstick/network_services/vnf_generic/vnf/vnf_ssh_helper.py
diff options
context:
space:
mode:
authorAbhijit Sinha <abhijit.sinha@intel.com>2018-06-22 13:24:20 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-06-22 13:24:20 +0000
commitc8a3679b57eafd2c7855dc82bd028308fa92f4e2 (patch)
treee6fe6a727a77a80cadf636ee9fe00a4628494b38 /yardstick/network_services/vnf_generic/vnf/vnf_ssh_helper.py
parentaeb3cd61b405335684ca3a2228c4df236c064b45 (diff)
parent3fdca97ff5053770161059a34a95fd39463eaecd (diff)
Merge "Configure ACL via static file"
Diffstat (limited to 'yardstick/network_services/vnf_generic/vnf/vnf_ssh_helper.py')
-rw-r--r--yardstick/network_services/vnf_generic/vnf/vnf_ssh_helper.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/yardstick/network_services/vnf_generic/vnf/vnf_ssh_helper.py b/yardstick/network_services/vnf_generic/vnf/vnf_ssh_helper.py
index de6fd9329..6c5c6c833 100644
--- a/yardstick/network_services/vnf_generic/vnf/vnf_ssh_helper.py
+++ b/yardstick/network_services/vnf_generic/vnf/vnf_ssh_helper.py
@@ -47,6 +47,7 @@ class VnfSshHelper(AutoConnectSSH):
def upload_config_file(self, prefix, content):
cfg_file = os.path.join(constants.REMOTE_TMP, prefix)
+ LOG.debug('Config file name: %s', cfg_file)
LOG.debug(content)
file_obj = StringIO(content)
self.put_file_obj(file_obj, cfg_file)