From d541b2b7d99651b53bd21ff75cd5fdacf8472a98 Mon Sep 17 00:00:00 2001 From: Peter Mikus Date: Fri, 2 Aug 2019 06:16:15 +0000 Subject: [PATCH] FIX: Disable API checker during runtime Change-Id: Id530710aaedc30472d8bcd33d24b7fbcaa7c011b Signed-off-by: Peter Mikus --- resources/libraries/python/PapiExecutor.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/resources/libraries/python/PapiExecutor.py b/resources/libraries/python/PapiExecutor.py index 792fa4c3b3..d7130ebb61 100644 --- a/resources/libraries/python/PapiExecutor.py +++ b/resources/libraries/python/PapiExecutor.py @@ -355,11 +355,9 @@ class PapiSocketExecutor(object): :rtype: PapiSocketExecutor :raises RuntimeError: If unverified or conflicting CRC is encountered. """ - self.crc_checker.report_initial_conflicts() if history: PapiHistory.add_to_papi_history( self._node, csit_papi_command, **kwargs) - self.crc_checker.check_api_name(csit_papi_command) self._api_command_list.append( dict(api_name=csit_papi_command, api_args=kwargs)) return self @@ -519,7 +517,6 @@ class PapiSocketExecutor(object): if not isinstance(reply, list): reply = [reply] for item in reply: - self.crc_checker.check_api_name(item.__class__.__name__) dict_item = dictize(item) if "retval" in dict_item.keys(): # *_details messages do not contain retval. -- 2.16.6