AndrewJSchofield commented on code in PR #17498: URL: https://github.com/apache/kafka/pull/17498#discussion_r1799772425
########## clients/src/main/java/org/apache/kafka/common/protocol/Protocol.java: ########## @@ -103,14 +103,47 @@ private static void schemaToFieldTableHtml(Schema schema, StringBuilder b) { b.append("<th>Description</th>\n"); b.append("</tr>"); for (BoundField field : fields) { - b.append("<tr>\n"); - b.append("<td>"); - b.append(field.def.name); - b.append("</td>"); - b.append("<td>"); - b.append(field.def.docString); - b.append("</td>"); - b.append("</tr>\n"); + if (!(field.def.type instanceof TaggedFields)) { Review Comment: I did consider this but I chose to put the non-tagged fields case first. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: jira-unsubscr...@kafka.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org