From ef9c23503c759bfc0fc404c0d7cf122c92460123 Mon Sep 17 00:00:00 2001 From: Andrew Yourtchenko Date: Thu, 4 Mar 2021 10:04:41 +0000 Subject: vppapigen: expose the values of per-message "options" in the api.json files Also fix the vapi parser's assumption about what the container with CRC is supposed to look like.. Change-Id: I3a23ef6c1502232742c03d227eb3654fb757709c Type: improvement Signed-off-by: Andrew Yourtchenko --- src/vpp-api/vapi/vapi_json_parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/vpp-api/vapi') diff --git a/src/vpp-api/vapi/vapi_json_parser.py b/src/vpp-api/vapi/vapi_json_parser.py index 6d2db422c96..1383d456bf1 100644 --- a/src/vpp-api/vapi/vapi_json_parser.py +++ b/src/vpp-api/vapi/vapi_json_parser.py @@ -164,7 +164,7 @@ class Message(object): raise ParseError("While parsing message `%s': could not find all " "common header fields" % name) for field in m[1:]: - if len(field) == 1 and 'crc' in field: + if isinstance(field, dict) and 'crc' in field: self.crc = field['crc'] logger.debug("Found CRC `%s'" % self.crc) continue -- cgit 1.2.3-korg