You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by fp...@apache.org on 2022/01/07 10:51:41 UTC

[flink] branch master updated: [FLINK-25519][Connectors] Promote StreamExecutionEnvironment#fromSource() from @Experimental to @PublicEvolving

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

fpaul pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/master by this push:
     new 8d05393  [FLINK-25519][Connectors] Promote StreamExecutionEnvironment#fromSource() from @Experimental to @PublicEvolving
8d05393 is described below

commit 8d05393f5bcc0a917b2dab3fe81a58acaccabf13
Author: martijnvisser <ma...@2symbols.com>
AuthorDate: Wed Jan 5 20:42:18 2022 +0100

    [FLINK-25519][Connectors] Promote StreamExecutionEnvironment#fromSource() from @Experimental to @PublicEvolving
---
 .../flink/streaming/api/environment/StreamExecutionEnvironment.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/environment/StreamExecutionEnvironment.java b/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/environment/StreamExecutionEnvironment.java
index 80cc14b..3057a73 100644
--- a/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/environment/StreamExecutionEnvironment.java
+++ b/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/environment/StreamExecutionEnvironment.java
@@ -1893,7 +1893,7 @@ public class StreamExecutionEnvironment {
      * @param <OUT> type of the returned stream
      * @return the data stream constructed
      */
-    @Experimental
+    @PublicEvolving
     public <OUT> DataStreamSource<OUT> fromSource(
             Source<OUT, ?, ?> source,
             WatermarkStrategy<OUT> timestampsAndWatermarks,