From bb33f1d16f1451253f942da0c55cdea72e71c398 Mon Sep 17 00:00:00 2001 From: "juraj.linkes" Date: Fri, 29 Nov 2019 20:29:40 +0100 Subject: [PATCH] Change startup show pci to show ver When testing whether a socket is listetning, show pci results in a crash on the Taishan platform. Temporarily work around this by changing it to show ver. Change-Id: Id0f995373bc2f429d59de200e51959b2da408052 Signed-off-by: juraj.linkes --- resources/libraries/python/VPPUtil.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/libraries/python/VPPUtil.py b/resources/libraries/python/VPPUtil.py index 72325d8169..d3ab54766c 100644 --- a/resources/libraries/python/VPPUtil.py +++ b/resources/libraries/python/VPPUtil.py @@ -111,12 +111,12 @@ class VPPUtil: :param node: Topology node. :type node: dict """ - cmd = u"echo \"show pci\" | sudo socat - UNIX-CONNECT:/run/vpp/cli.sock" + cmd = u"echo \"show ver\" | sudo socat - UNIX-CONNECT:/run/vpp/cli.sock" exec_cmd_no_error( node, cmd, sudo=False, message=u"VPP failed to start!", retries=120 ) - cmd = u"vppctl show pci 2>&1 | fgrep -v \"Connection refused\" | " \ + cmd = u"vppctl show ver 2>&1 | fgrep -v \"Connection refused\" | " \ u"fgrep -v \"No such file or directory\"" exec_cmd_no_error( node, cmd, sudo=True, message=u"VPP failed to start!", retries=120 -- 2.16.6