justinmclean commented on code in PR #5942: URL: https://github.com/apache/gravitino/pull/5942#discussion_r1895358688
########## clients/cli/src/main/java/org/apache/gravitino/cli/commands/ListFilesets.java: ########## @@ -71,7 +71,7 @@ public void handle() { exitWithError(exp.getMessage()); } - String all = Joiner.on(",").join(filesets); + String all = filesets.length == 0 ? "No filesets exists." : Joiner.on(",").join(filesets); Review Comment: "No filesets exist." -- 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