Zakelly commented on code in PR #23679: URL: https://github.com/apache/flink/pull/23679#discussion_r1387573143
########## flink-clients/src/main/java/org/apache/flink/client/cli/CliFrontendParser.java: ########## @@ -611,6 +636,22 @@ public static void printHelpForSavepoint(Collection<CustomCommandLine> customCom System.out.println(); } + public static void printHelpForCheckpoint(Collection<CustomCommandLine> customCommandLines) { + HelpFormatter formatter = new HelpFormatter(); + formatter.setLeftPadding(5); + formatter.setWidth(80); + + System.out.println( + "\nAction \"checkpoint\" triggers checkpoints for a running job or disposes existing ones."); Review Comment: Yeah, sorry for the mistake 😆 ########## flink-clients/src/main/java/org/apache/flink/client/cli/CliFrontendParser.java: ########## @@ -611,6 +636,22 @@ public static void printHelpForSavepoint(Collection<CustomCommandLine> customCom System.out.println(); } + public static void printHelpForCheckpoint(Collection<CustomCommandLine> customCommandLines) { + HelpFormatter formatter = new HelpFormatter(); + formatter.setLeftPadding(5); + formatter.setWidth(80); + + System.out.println( + "\nAction \"checkpoint\" triggers checkpoints for a running job or disposes existing ones."); Review Comment: Yeah, sorry for the mistake 😆 -- 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: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org