ijuma commented on code in PR #18845:
URL: https://github.com/apache/kafka/pull/18845#discussion_r1956608864
##########
metadata/src/main/java/org/apache/kafka/image/node/MetadataNode.java:
##########
@@ -53,7 +53,8 @@ default void print(MetadataNodePrinter printer) {
for (String name : names) {
printer.enterNode(name);
MetadataNode child = child(name);
- child.print(printer);
+ if (child != null)
+ child.print(printer);
Review Comment:
Interesting. Shall we file a separate JIRA ticket for that? Perhaps we can
wait for @mumrah to confirm.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]