Github user zentol commented on a diff in the pull request:
https://github.com/apache/flink/pull/6049#discussion_r189804643
--- Diff:
flink-clients/src/main/java/org/apache/flink/client/cli/ListOptions.java ---
@@ -30,11 +31,13 @@
private final boolean running;
private final boolean scheduled;
+ private final boolean other;
public ListOptions(CommandLine line) {
super(line);
- this.running = line.hasOption(RUNNING_OPTION.getOpt());
- this.scheduled = line.hasOption(SCHEDULED_OPTION.getOpt());
+ this.other = line.hasOption(ALL_OPTION.getOpt());
--- End diff --
rename to `showAll`
---