aboutsummaryrefslogtreecommitdiffstats
path: root/resources/libraries
diff options
context:
space:
mode:
authorJan Gelety <jgelety@cisco.com>2020-03-11 15:04:08 +0100
committerJan Gelety <jgelety@cisco.com>2020-03-17 13:43:26 +0000
commit54ff8d827f0aa3c689e26583952d04d86be503e7 (patch)
tree977b2766db9e91c7a778c0bb7df9b2740fb6ccb3 /resources/libraries
parentec2963ab584c8c80f53178adb364a5f46cd95d95 (diff)
CSIT-1597 API cleanup: vpe
- cover API changes in VPP: https://gerrit.fd.io/r/c/vpp/+/25567 - update vpp stable to version 20.05-rc0~352 Change-Id: I205d7d3de48d480e070d3e2d3e3ab83480b69c77 Signed-off-by: Jan Gelety <jgelety@cisco.com>
Diffstat (limited to 'resources/libraries')
-rw-r--r--resources/libraries/python/VPPUtil.py10
1 files changed, 1 insertions, 9 deletions
diff --git a/resources/libraries/python/VPPUtil.py b/resources/libraries/python/VPPUtil.py
index 6e6dad70fc..8744dc0154 100644
--- a/resources/libraries/python/VPPUtil.py
+++ b/resources/libraries/python/VPPUtil.py
@@ -346,15 +346,7 @@ class VPPUtil:
with PapiSocketExecutor(node) as papi_exec:
reply = papi_exec.add(cmd).get_reply()
- threads_data = list()
- for thread in reply[u"thread_data"]:
- thread_data = list()
- for item in thread:
- if isinstance(item, str):
- item = item.rstrip('\x00')
- thread_data.append(item)
- threads_data.append(thread_data)
-
+ threads_data = reply[u"thread_data"]
logger.trace(f"show threads:\n{threads_data}")
return threads_data