diff options
Diffstat (limited to 'vswitches')
-rw-r--r-- | vswitches/ovs.py | 2 | ||||
-rw-r--r-- | vswitches/vpp_dpdk_vhost.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/vswitches/ovs.py b/vswitches/ovs.py index 03c8dadd..e713fc38 100644 --- a/vswitches/ovs.py +++ b/vswitches/ovs.py @@ -52,7 +52,7 @@ class IVSwitchOvs(IVSwitch, tasks.Process): uid=settings.getValue( 'LOG_TIMESTAMP'), ex=ext) - self._logfile = os.path.join(settings.getValue('LOG_DIR'), + self._logfile = os.path.join(settings.getValue('RESULTS_PATH'), rename_vswitchd) self._ovsdb_pidfile_path = os.path.join(settings.getValue('TOOLS')['ovs_var_tmp'], "ovsdb-server.pid") diff --git a/vswitches/vpp_dpdk_vhost.py b/vswitches/vpp_dpdk_vhost.py index f639d3d6..5dfc314d 100644 --- a/vswitches/vpp_dpdk_vhost.py +++ b/vswitches/vpp_dpdk_vhost.py @@ -42,7 +42,7 @@ class VppDpdkVhost(IVSwitch, tasks.Process): uid=S.getValue( 'LOG_TIMESTAMP'), ex=ext) - self._logfile = os.path.join(S.getValue('LOG_DIR'), rename_vpplf) + self._logfile = os.path.join(S.getValue('RESULTS_PATH'), rename_vpplf) self._expect = r'vpp#' self._cmd_template = ['sudo', '-E', S.getValue('TOOLS')['vpp']] self._phy_ports = [] |