Skip to content

Commit

Permalink
[FLINK-8333] [flip6] Separate deployment options from command options
Browse files Browse the repository at this point in the history
This commit separates the parsing of command options and deployment options into two
steps. This makes it easier to make the CustomCommandLines non-static.

Moreover, this commit moves the CliFrontend into the cli sub package.
  • Loading branch information
tillrohrmann committed Jan 2, 2018
1 parent 192adb7 commit 1393089
Show file tree
Hide file tree
Showing 24 changed files with 548 additions and 596 deletions.
Expand Up @@ -28,4 +28,8 @@ public class CliArgsException extends Exception {
public CliArgsException(String message) {
super(message);
}

public CliArgsException(String message, Throwable cause) {
super(message, cause);
}
}

0 comments on commit 1393089

Please sign in to comment.