knaufk commented on a change in pull request #18670: URL: https://github.com/apache/flink/pull/18670#discussion_r802654522
########## File path: flink-yarn/src/main/java/org/apache/flink/yarn/configuration/YarnDeploymentTarget.java ########## @@ -30,9 +30,11 @@ /** A class containing all the supported deployment target names for Yarn. */ @Internal public enum YarnDeploymentTarget { - PER_JOB("yarn-per-job"), SESSION("yarn-session"), - APPLICATION("yarn-application"); + APPLICATION("yarn-application"), + + @Deprecated + PER_JOB("yarn-per-job"); Review comment: Just as in the documentation it felt right to have the deprecated one at the bottom. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org