justinmclean commented on code in PR #6573:
URL: https://github.com/apache/gravitino/pull/6573#discussion_r1976573102


##########
clients/cli/src/main/java/org/apache/gravitino/cli/commands/ListTopicProperties.java:
##########
@@ -65,6 +65,13 @@ public void handle() {
     try {
       GravitinoClient client = buildClient(metalake);
       gTopic = client.loadCatalog(catalog).asTopicCatalog().loadTopic(name);
+
+      // Ensure topic exists before accessing properties
+      if (gTopic == null) {
+        exitWithError(ErrorMessages.UNKNOWN_TOPIC);
+        return;
+      }
+

Review Comment:
   Please move outside try block and remove unneeded comment



-- 
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: commits-unsubscr...@gravitino.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to