Github user mxm commented on a diff in the pull request: https://github.com/apache/flink/pull/1978#discussion_r63680659 --- Diff: flink-clients/src/main/java/org/apache/flink/client/program/Client.java --- @@ -100,6 +102,9 @@ */ private JobID lastJobID; + /** Switch for blocking/detached job submission of the client */ + private boolean detachedJobSubmission = false; --- End diff -- Yes, this flag is actually just an indicator that can be set by the cluster client. Users may still submit jobs blocking or detached. I know that's not ideal, I'll try to see if we can get rid of this. I think we could get rid of the detached/blocking methods and make this the only point where the user controls the job submission mode.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---