Github user mxm commented on a diff in the pull request: https://github.com/apache/flink/pull/1214#discussion_r42772489 --- Diff: flink-clients/src/main/java/org/apache/flink/client/program/Client.java --- @@ -277,12 +278,20 @@ else if (prog.isUsingInteractiveMode()) { // invoke here try { prog.invokeInteractiveModeForExecution(); + // if we're here, it means the program is valid for detached mode execution. + JobWithJars plan = ContextEnvironment.ContextEnvironmentFactory.getPlan(); + JobGraph graph = ContextEnvironment.ContextEnvironmentFactory.getGraph(); + if (plan != null && graph == null) { --- End diff -- What would happen if we created a streaming program and a batch program in one jar? Then both would be set and only the batch program would be created...
--- 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. ---