aboutsummaryrefslogtreecommitdiffstats
path: root/resources
diff options
context:
space:
mode:
authorVratko Polak <vrpolak@cisco.com>2019-08-01 12:00:17 +0200
committerVratko Polak <vrpolak@cisco.com>2019-08-01 12:00:17 +0200
commit2dd27f5a638b5231c0f074ca61e6b67fed9d1faf (patch)
tree57fb1388cde8fafd08fb9ce1d8b72dd8d4a7ce58 /resources
parentfca2fc9b8212ca088ea2374c42685312afb8149f (diff)
Disable CRC checking at runtime
Temporarily, will be re-enabled once VPP and CSIT are in sync again. Change-Id: I0d3bb5b70ea04155972093102a26a81f86119c37 Signed-off-by: Vratko Polak <vrpolak@cisco.com>
Diffstat (limited to 'resources')
-rw-r--r--resources/libraries/python/VppApiCrc.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/resources/libraries/python/VppApiCrc.py b/resources/libraries/python/VppApiCrc.py
index eba65ac785..28d66d3cd4 100644
--- a/resources/libraries/python/VppApiCrc.py
+++ b/resources/libraries/python/VppApiCrc.py
@@ -257,8 +257,9 @@ class VppApiCrcChecker(object):
return
crc = self._found.get(api_name, None)
self._reported[api_name] = crc
- raise RuntimeError("No active collection has API {api} CRC found {crc}"\
- .format(api=api_name, crc=crc))
+ # Disabled temporarily during CRC mismatch.
+ #raise RuntimeError("No active collection has API {api} CRC found {crc}"\
+ # .format(api=api_name, crc=crc))
# Moved to the end as this part will be edited frequently.
def _register_all(self):