This is an automated email from the ASF dual-hosted git repository. xtsong pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/flink.git
commit 132722e1b43607fe2236ecbbc3ba1faad1ad147f Author: sxnan <[email protected]> AuthorDate: Tue May 28 09:41:10 2024 +0800 [FLINK-35461][config] Deprecate StreamPipelineOptions that only contains deprecated option This closes #24853 --- .../apache/flink/streaming/api/environment/StreamPipelineOptions.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/environment/StreamPipelineOptions.java b/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/environment/StreamPipelineOptions.java index e848479f3b6..e43f3757825 100644 --- a/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/environment/StreamPipelineOptions.java +++ b/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/environment/StreamPipelineOptions.java @@ -30,7 +30,10 @@ import org.apache.flink.streaming.api.TimeCharacteristic; /** * The {@link ConfigOption configuration options} for job execution. Those are stream specific * options. See also {@link org.apache.flink.configuration.PipelineOptions}. + * + * @deprecated This option class is deprecated in 1.20 and will be removed in 2.0. */ +@Deprecated @PublicEvolving public class StreamPipelineOptions {
