X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=resources%2Ftools%2Fpresentation%2Finput_data_parser.py;h=9e61c09d53ca89ef48f76b4b617f40c8df59f327;hb=b0450d934e438c9c4cf3eb7f6aeb6cba132e7877;hp=11cbae72591c957b4a55074e6907d5849e5faec4;hpb=b828c1b7f96ed1350276237a7b7bda05fad3d866;p=csit.git diff --git a/resources/tools/presentation/input_data_parser.py b/resources/tools/presentation/input_data_parser.py index 11cbae7259..9e61c09d53 100644 --- a/resources/tools/presentation/input_data_parser.py +++ b/resources/tools/presentation/input_data_parser.py @@ -825,16 +825,15 @@ class ExecutionChecker(ResultVisitor): result["completed-requests"] = int(groups.group(5)) result["failed-requests"] = int(groups.group(6)) result["bytes-transferred"] = int(groups.group(4)) - if "TCP_CPS"in tags: + if "TCP_CPS" in tags: result["cps"] = float(groups.group(3)) elif "TCP_RPS" in tags: result["rps"] = float(groups.group(3)) else: return result, status status = "PASS" - except (IndexError, ValueError): - pass - + except (IndexError, ValueError) as err: + logging.warning(err) return result, status def visit_suite(self, suite):