Change startup show pci to show ver 85/23785/1
authorjuraj.linkes <juraj.linkes@pantheon.tech>
Fri, 29 Nov 2019 19:29:40 +0000 (20:29 +0100)
committerjuraj.linkes <juraj.linkes@pantheon.tech>
Fri, 29 Nov 2019 19:29:40 +0000 (20:29 +0100)
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 <juraj.linkes@pantheon.tech>
resources/libraries/python/VPPUtil.py

index 72325d8..d3ab547 100644 (file)
@@ -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