This is an automated email from the ASF dual-hosted git repository.

kkloudas pushed a commit to branch release-1.12
in repository https://gitbox.apache.org/repos/asf/flink.git

commit ec2c01180bb7ca0e1249b8c58e7a191aba13f052
Author: Kostas Kloudas <[email protected]>
AuthorDate: Fri Nov 27 12:05:27 2020 +0100

    [fix] Fix GenericCLI.targetOption description msg
---
 .../src/main/java/org/apache/flink/client/cli/GenericCLI.java          | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git 
a/flink-clients/src/main/java/org/apache/flink/client/cli/GenericCLI.java 
b/flink-clients/src/main/java/org/apache/flink/client/cli/GenericCLI.java
index 50cc6bf..d010034 100644
--- a/flink-clients/src/main/java/org/apache/flink/client/cli/GenericCLI.java
+++ b/flink-clients/src/main/java/org/apache/flink/client/cli/GenericCLI.java
@@ -54,8 +54,7 @@ public class GenericCLI implements CustomCommandLine {
        private final Option targetOption = new Option("t", "target", true,
                        "The deployment target for the given application, which 
is equivalent " +
                                        "to the \"" + 
DeploymentOptions.TARGET.key() + "\" config option. The " +
-                                       "currently available targets are: " + 
getExecutorFactoryNames() +
-                                       ", \"yarn-application\" and 
\"kubernetes-application\".");
+                                       "currently available targets are: " + 
getExecutorFactoryNames() + ".");
 
        private final Configuration configuration;
 

Reply via email to