Update of VPP_STABLE_VER files 93/22393/12
authorJan Gelety <jgelety@cisco.com>
Thu, 26 Sep 2019 07:23:57 +0000 (09:23 +0200)
committerJan Gelety <jgelety@cisco.com>
Thu, 3 Oct 2019 23:41:43 +0000 (01:41 +0200)
 - use new vpp ref build - ubuntu 16.04:
   20.01-rc0~324-g66a332c~b8122

 - use new vpp ref build - ubuntu 18.04:
   20.01-rc0~324-g66a332cf1

 - use new vpp ref build - centos7:
   20.01-rc0~324_g66a332c~b7936

Change-Id: I82c6032742939417914f5210b1fba4464ab1e70d
Signed-off-by: Jan Gelety <jgelety@cisco.com>
VPP_STABLE_VER_CENTOS
VPP_STABLE_VER_UBUNTU
VPP_STABLE_VER_UBUNTU_BIONIC
resources/libraries/python/Constants.py
resources/libraries/python/VPPUtil.py

index 8066a36..1d9ae2d 100644 (file)
@@ -1 +1 @@
-20.01-rc0~210_g5c29029~b7820
+20.01-rc0~324_g66a332c~b7936
index df20846..0cc3a8a 100644 (file)
@@ -1 +1 @@
-20.01-rc0~210-g5c29029~b8007
+20.01-rc0~324-g66a332c~b8122
index 7cecdc2..768e292 100644 (file)
@@ -1 +1 @@
-20.01-rc0~210-g5c29029ef
+20.01-rc0~324-g66a332cf1
index 5717666..5b7e1cd 100644 (file)
@@ -229,7 +229,8 @@ class Constants(object):
     SOCKSTAT_PATH = "/run/vpp/stats.sock"
 
     # Global "kill switch" for CRC checking during runtime.
-    FAIL_ON_CRC_MISMATCH = get_pessimistic_bool_from_env("FAIL_ON_CRC_MISMATCH")
+    # FAIL_ON_CRC_MISMATCH = get_pessimistic_bool_from_env("FAIL_ON_CRC_MISMATCH")
+    FAIL_ON_CRC_MISMATCH = False
 
     # Mapping from NIC name to its bps limit.
     # TODO: Implement logic to lower limits to TG NIC or software. Or PCI.
index 6e3ff70..432a589 100644 (file)
@@ -112,6 +112,10 @@ class VPPUtil(object):
         :param node: Topology node.
         :type node: dict
         """
+        cmd = 'echo "show pci" | sudo socat - UNIX-CONNECT:/run/vpp/cli.sock'
+        exec_cmd_no_error(
+            node, cmd, sudo=False, message='VPP failed to start!', retries=120)
+
         cmd = ('vppctl show pci 2>&1 | '
                'fgrep -v "Connection refused" | '
                'fgrep -v "No such file or directory"')