diff options
author | Tibor Frank <tifrank@cisco.com> | 2019-08-19 08:05:54 +0200 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2019-08-19 08:05:54 +0200 |
commit | f893de60bb36c3e241a992cb389697997a1cd0f2 (patch) | |
tree | 20c7fc4710299a297de5baba346e4321c0561709 /resources/libraries/python/DPDK | |
parent | db24a2e63a447599b5125da4b6f93f0f9184bfcc (diff) |
Write DPDK version to log
Change-Id: Ia9ec0d420c8db9e71234f74e4013c21d039931b2
Signed-off-by: Tibor Frank <tifrank@cisco.com>
Diffstat (limited to 'resources/libraries/python/DPDK')
-rw-r--r-- | resources/libraries/python/DPDK/DPDKTools.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/libraries/python/DPDK/DPDKTools.py b/resources/libraries/python/DPDK/DPDKTools.py index b6c351f3c2..d7a780b223 100644 --- a/resources/libraries/python/DPDK/DPDKTools.py +++ b/resources/libraries/python/DPDK/DPDKTools.py @@ -111,7 +111,7 @@ class DPDKTools(object): message = 'Install the DPDK failed!' exec_cmd_no_error(node, command, timeout=600, message=message) - command = ('cat {fwdir}/download_dir/dpdk*/VERSION'. + command = ('cat {fwdir}/dpdk*/VERSION'. format(fwdir=Constants.REMOTE_FW_DIR)) message = 'Get DPDK version failed!' stdout, _ = exec_cmd_no_error(node, command, message=message) |