justinmclean commented on code in PR #6343: URL: https://github.com/apache/gravitino/pull/6343#discussion_r1945581200
########## clients/cli/src/main/java/org/apache/gravitino/cli/MetalakeCommandHandler.java: ########## @@ -40,15 +39,18 @@ public class MetalakeCommandHandler extends CommandHandler { * @param gravitinoCommandLine The Gravitino command line instance. * @param line The command line arguments. * @param command The command to execute. - * @param ignore Ignore server version mismatch. + * @param context The command context. */ public MetalakeCommandHandler( - GravitinoCommandLine gravitinoCommandLine, CommandLine line, String command, boolean ignore) { + GravitinoCommandLine gravitinoCommandLine, + CommandLine line, + String command, + CommandContext context) { this.gravitinoCommandLine = gravitinoCommandLine; this.line = line; this.command = command; - this.ignore = ignore; - this.url = getUrl(line); + this.context = context; + this.context.setUrl(getUrl(line)); Review Comment: Currently, getUrl is part of CommandHandler, which is needed by the commands which have not been refactored yet. It might be possible to refactor after all commands have changed. -- 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