aboutsummaryrefslogtreecommitdiffstats
path: root/resources
diff options
context:
space:
mode:
authorTibor Frank <tifrank@cisco.com>2019-08-19 08:05:54 +0200
committerTibor Frank <tifrank@cisco.com>2019-08-19 06:07:57 +0000
commit4d6d366e49dfaff01119e2f05c3fa2d19c7c2245 (patch)
tree54365f45435c24f9545f1dd81eebbb8ed2691f22 /resources
parent6d2df41aa905ac8fc132b461bb692938d97af47f (diff)
Write DPDK version to log
Change-Id: Ia9ec0d420c8db9e71234f74e4013c21d039931b2 Signed-off-by: Tibor Frank <tifrank@cisco.com> (cherry picked from commit f893de60bb36c3e241a992cb389697997a1cd0f2)
Diffstat (limited to 'resources')
-rw-r--r--resources/libraries/python/DPDK/DPDKTools.py2
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)